Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for TagVariable (0.21 sec)

  1. src/debug/dwarf/tag_string.go

    	_ = x[TagPackedType-45]
    	_ = x[TagSubprogram-46]
    	_ = x[TagTemplateTypeParameter-47]
    	_ = x[TagTemplateValueParameter-48]
    	_ = x[TagThrownType-49]
    	_ = x[TagTryDwarfBlock-50]
    	_ = x[TagVariantPart-51]
    	_ = x[TagVariable-52]
    	_ = x[TagVolatileType-53]
    	_ = x[TagDwarfProcedure-54]
    	_ = x[TagRestrictType-55]
    	_ = x[TagInterfaceType-56]
    	_ = x[TagNamespace-57]
    	_ = x[TagImportedModule-58]
    	_ = x[TagUnspecifiedType-59]
    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/type_test.go

    	r := d.Reader()
    	seen := make(map[string]bool)
    	for {
    		e, err := r.Next()
    		if err != nil {
    			t.Fatal("r.Next:", err)
    		}
    		if e == nil {
    			break
    		}
    		if e.Tag == TagVariable {
    			vname, _ := e.Val(AttrName).(string)
    			tAttr := e.Val(AttrType)
    			typOff, ok := tAttr.(Offset)
    			if !ok {
    				t.Errorf("variable at offset %v has no type", e.Offset)
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf_test.go

    			mainIdx := ex.IdxFromOffset(maindie.Offset)
    			childDies := ex.Children(mainIdx)
    			var iEntry *dwarf.Entry
    			for _, child := range childDies {
    				if child.Tag == dwarf.TagVariable && child.Val(dwarf.AttrName).(string) == "i" {
    					iEntry = child
    					break
    				}
    			}
    			if iEntry == nil {
    				t.Fatalf("didn't find DW_TAG_variable for i in main.main")
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  4. src/debug/dwarf/const.go

    	TagTemplateTypeParameter  Tag = 0x2F
    	TagTemplateValueParameter Tag = 0x30
    	TagThrownType             Tag = 0x31
    	TagTryDwarfBlock          Tag = 0x32
    	TagVariantPart            Tag = 0x33
    	TagVariable               Tag = 0x34
    	TagVolatileType           Tag = 0x35
    	// The following are new in DWARF 3.
    	TagDwarfProcedure  Tag = 0x36
    	TagRestrictType    Tag = 0x37
    	TagInterfaceType   Tag = 0x38
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	// Scan DWARF info for top-level TagVariable entries with AttrName __cgo__i.
    	types := make([]dwarf.Type, len(names))
    	r := d.Reader()
    	for {
    		e, err := r.Next()
    		if err != nil {
    			fatalf("reading DWARF entry: %s", err)
    		}
    		if e == nil {
    			break
    		}
    		switch e.Tag {
    		case dwarf.TagVariable:
    			name, _ := e.Val(dwarf.AttrName).(string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TagTryDwarfBlock", Const, 0},
    		{"TagTypeUnit", Const, 3},
    		{"TagTypedef", Const, 0},
    		{"TagUnionType", Const, 0},
    		{"TagUnspecifiedParameters", Const, 0},
    		{"TagUnspecifiedType", Const, 0},
    		{"TagVariable", Const, 0},
    		{"TagVariant", Const, 0},
    		{"TagVariantPart", Const, 0},
    		{"TagVolatileType", Const, 0},
    		{"TagWithStmt", Const, 0},
    		{"Type", Type, 0},
    		{"TypedefType", Type, 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 TagTypedef Tag
    pkg debug/dwarf, const TagUnionType Tag
    pkg debug/dwarf, const TagUnspecifiedParameters Tag
    pkg debug/dwarf, const TagUnspecifiedType Tag
    pkg debug/dwarf, const TagVariable Tag
    pkg debug/dwarf, const TagVariant Tag
    pkg debug/dwarf, const TagVariantPart Tag
    pkg debug/dwarf, const TagVolatileType Tag
    pkg debug/dwarf, const TagWithStmt 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 TagTypedef = 22
    pkg debug/dwarf, const TagUnionType = 23
    pkg debug/dwarf, const TagUnspecifiedParameters = 24
    pkg debug/dwarf, const TagUnspecifiedType = 59
    pkg debug/dwarf, const TagVariable = 52
    pkg debug/dwarf, const TagVariant = 25
    pkg debug/dwarf, const TagVariantPart = 51
    pkg debug/dwarf, const TagVolatileType = 53
    pkg debug/dwarf, const TagWithStmt = 34
    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