Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for TagMember (0.29 sec)

  1. src/debug/dwarf/tag_string.go

    	_ = x[TagClassType-2]
    	_ = x[TagEntryPoint-3]
    	_ = x[TagEnumerationType-4]
    	_ = x[TagFormalParameter-5]
    	_ = x[TagImportedDeclaration-8]
    	_ = x[TagLabel-10]
    	_ = x[TagLexDwarfBlock-11]
    	_ = x[TagMember-13]
    	_ = x[TagPointerType-15]
    	_ = x[TagReferenceType-16]
    	_ = x[TagCompileUnit-17]
    	_ = x[TagStringType-18]
    	_ = x[TagStructType-19]
    	_ = x[TagSubroutineType-21]
    	_ = x[TagTypedef-22]
    	_ = x[TagUnionType-23]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 03 17:32:37 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  2. src/debug/dwarf/const.go

    	TagEnumerationType        Tag = 0x04
    	TagFormalParameter        Tag = 0x05
    	TagImportedDeclaration    Tag = 0x08
    	TagLabel                  Tag = 0x0A
    	TagLexDwarfBlock          Tag = 0x0B
    	TagMember                 Tag = 0x0D
    	TagPointerType            Tag = 0x0F
    	TagReferenceType          Tag = 0x10
    	TagCompileUnit            Tag = 0x11
    	TagStringType             Tag = 0x12
    	TagStructType             Tag = 0x13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. src/debug/dwarf/type.go

    		// Attributes:
    		//	AttrName: name of struct, union, or class
    		//	AttrByteSize: byte size [required]
    		//	AttrDeclaration: if true, struct/union/class is incomplete
    		// Children:
    		//	TagMember to describe one member.
    		//		AttrName: name of member [required]
    		//		AttrType: type of member [required]
    		//		AttrByteSize: size in bytes
    		//		AttrBitOffset: bit offset within bytes for bit fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  4. src/debug/elf/file_test.go

    			},
    		},
    	},
    	{
    		"testdata/gcc-amd64-openbsd-debug-with-rela.obj",
    		[]relocationTestEntry{
    			{
    				entryNumber: 203,
    				entry: &dwarf.Entry{
    					Offset:   0xc62,
    					Tag:      dwarf.TagMember,
    					Children: false,
    					Field: []dwarf.Field{
    						{Attr: dwarf.AttrName, Val: "it_interval", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrDeclFile, Val: int64(7), Class: dwarf.ClassConstant},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf_test.go

    	for entry, err := rdr.Next(); entry != nil; entry, err = rdr.Next() {
    		if err != nil {
    			return nil, err
    		}
    		switch entry.Tag {
    		case dwarf.TagMember:
    			name := entry.Val(dwarf.AttrName).(string)
    			embedded := entry.Val(goEmbeddedStruct).(bool)
    			memberEmbedded[name] = embedded
    		case 0:
    			return memberEmbedded, nil
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TagImportedUnit", Const, 0},
    		{"TagInheritance", Const, 0},
    		{"TagInlinedSubroutine", Const, 0},
    		{"TagInterfaceType", Const, 0},
    		{"TagLabel", Const, 0},
    		{"TagLexDwarfBlock", Const, 0},
    		{"TagMember", Const, 0},
    		{"TagModule", Const, 0},
    		{"TagMutableType", Const, 0},
    		{"TagNamelist", Const, 0},
    		{"TagNamelistItem", Const, 0},
    		{"TagNamespace", Const, 0},
    		{"TagPackedType", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg debug/dwarf, const TagInlinedSubroutine Tag
    pkg debug/dwarf, const TagInterfaceType Tag
    pkg debug/dwarf, const TagLabel Tag
    pkg debug/dwarf, const TagLexDwarfBlock Tag
    pkg debug/dwarf, const TagMember Tag
    pkg debug/dwarf, const TagModule Tag
    pkg debug/dwarf, const TagMutableType Tag
    pkg debug/dwarf, const TagNamelist Tag
    pkg debug/dwarf, const TagNamelistItem Tag
    pkg debug/dwarf, const TagNamespace Tag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg debug/dwarf, const TagInlinedSubroutine = 29
    pkg debug/dwarf, const TagInterfaceType = 56
    pkg debug/dwarf, const TagLabel = 10
    pkg debug/dwarf, const TagLexDwarfBlock = 11
    pkg debug/dwarf, const TagMember = 13
    pkg debug/dwarf, const TagModule = 30
    pkg debug/dwarf, const TagMutableType = 62
    pkg debug/dwarf, const TagNamelist = 43
    pkg debug/dwarf, const TagNamelistItem = 44
    pkg debug/dwarf, const TagNamespace = 57
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top