Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ClassUnknown (0.14 sec)

  1. src/debug/dwarf/class_string.go

    package dwarf
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[ClassUnknown-0]
    	_ = x[ClassAddress-1]
    	_ = x[ClassBlock-2]
    	_ = x[ClassConstant-3]
    	_ = x[ClassExprLoc-4]
    	_ = x[ClassFlag-5]
    	_ = x[ClassLinePtr-6]
    	_ = x[ClassLocListPtr-7]
    	_ = x[ClassMacPtr-8]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:24:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/debug/dwarf/entry.go

    // offsets to one of the Class*Ptr classes, even though these classes
    // were only defined in DWARF 3.
    type Class int
    
    const (
    	// ClassUnknown represents values of unknown DWARF class.
    	ClassUnknown Class = iota
    
    	// ClassAddress represents values of type uint64 that are
    	// addresses on the target machine.
    	ClassAddress
    
    	// ClassBlock represents values of type []byte whose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  3. api/go1.6.txt

    pkg crypto/x509, method (SignatureAlgorithm) String() string
    pkg crypto/x509, type InsecureAlgorithmError int
    pkg database/sql, method (*DB) SetConnMaxLifetime(time.Duration)
    pkg debug/dwarf, const ClassUnknown = 0
    pkg debug/dwarf, const ClassUnknown Class
    pkg debug/elf, const COMPRESS_HIOS = 1879048191
    pkg debug/elf, const COMPRESS_HIOS CompressionType
    pkg debug/elf, const COMPRESS_HIPROC = 2147483647
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:40:13 UTC 2016
    - 12.9K bytes
    - Viewed (0)
  4. src/debug/dwarf/entry_test.go

    	f := e.AttrField(AttrGNUAddrBase)
    	if _, ok := f.Val.(int64); !ok {
    		t.Fatalf("bad attribute value type: have %T, want int64", f.Val)
    	}
    	if f.Class != ClassUnknown {
    		t.Fatalf("bad class: have %s, want %s", f.Class, ClassUnknown)
    	}
    }
    
    // wantRange maps from a PC to the ranges of the compilation unit
    // containing that PC.
    type wantRange struct {
    	pc     uint64
    	ranges [][2]uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ClassReferenceSig", Const, 5},
    		{"ClassRngList", Const, 14},
    		{"ClassRngListsPtr", Const, 14},
    		{"ClassStrOffsetsPtr", Const, 14},
    		{"ClassString", Const, 5},
    		{"ClassStringAlt", Const, 5},
    		{"ClassUnknown", Const, 6},
    		{"CommonType", Type, 0},
    		{"CommonType.ByteSize", Field, 0},
    		{"CommonType.Name", Field, 0},
    		{"ComplexType", Type, 0},
    		{"ComplexType.BasicType", Field, 0},
    		{"Data", 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)
Back to top