Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for TagTypedef (0.23 sec)

  1. src/debug/dwarf/tag_string.go

    	_ = 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]
    	_ = x[TagUnspecifiedParameters-24]
    	_ = x[TagVariant-25]
    	_ = x[TagCommonDwarfBlock-26]
    	_ = x[TagCommonInclusion-27]
    	_ = x[TagInheritance-28]
    	_ = x[TagInlinedSubroutine-29]
    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 == TagTypedef {
    			typ, err := d.Type(e.Offset)
    			if err != nil {
    				t.Fatal("d.Type:", err)
    			}
    			t1 := typ.(*TypedefType)
    			var typstr string
    			if ts, ok := t1.Type.(*StructType); ok {
    				typstr = ts.Defn()
    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/debug/dwarf/const.go

    	TagReferenceType          Tag = 0x10
    	TagCompileUnit            Tag = 0x11
    	TagStringType             Tag = 0x12
    	TagStructType             Tag = 0x13
    	TagSubroutineType         Tag = 0x15
    	TagTypedef                Tag = 0x16
    	TagUnionType              Tag = 0x17
    	TagUnspecifiedParameters  Tag = 0x18
    	TagVariant                Tag = 0x19
    	TagCommonDwarfBlock       Tag = 0x1A
    	TagCommonInclusion        Tag = 0x1B
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf_test.go

    	rdr := dw.Reader()
    	for entry, err := rdr.Next(); entry != nil; entry, err = rdr.Next() {
    		if err != nil {
    			t.Fatalf("error reading DWARF: %v", err)
    		}
    		switch entry.Tag {
    		case dwarf.TagTypedef:
    			if name, ok := entry.Val(dwarf.AttrName).(string); ok && want[name] {
    				found[name] = true
    			}
    		}
    	}
    	return
    }
    
    type builtFile struct {
    	*objfilepkg.File
    	path string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  5. src/debug/dwarf/type.go

    				if tkid = typeOf(kid); err != nil {
    					goto Error
    				}
    			case TagUnspecifiedParameters:
    				tkid = &DotDotDotType{}
    			}
    			t.ParamType = append(t.ParamType, tkid)
    		}
    
    	case TagTypedef:
    		// Typedef (DWARF v2 ยง5.3)
    		// Attributes:
    		//	AttrName: name [required]
    		//	AttrType: type definition [required]
    		t := new(TypedefType)
    		typ = t
    		typeCache[off] = t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TagTemplateTypeParameter", Const, 0},
    		{"TagTemplateValueParameter", Const, 0},
    		{"TagThrownType", Const, 0},
    		{"TagTryDwarfBlock", Const, 0},
    		{"TagTypeUnit", Const, 3},
    		{"TagTypedef", Const, 0},
    		{"TagUnionType", Const, 0},
    		{"TagUnspecifiedParameters", Const, 0},
    		{"TagUnspecifiedType", Const, 0},
    		{"TagVariable", Const, 0},
    		{"TagVariant", 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 TagTemplateTypeParameter Tag
    pkg debug/dwarf, const TagTemplateValueParameter Tag
    pkg debug/dwarf, const TagThrownType Tag
    pkg debug/dwarf, const TagTryDwarfBlock Tag
    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
    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 TagTemplateTypeParameter = 47
    pkg debug/dwarf, const TagTemplateValueParameter = 48
    pkg debug/dwarf, const TagThrownType = 49
    pkg debug/dwarf, const TagTryDwarfBlock = 50
    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
    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