Home
last modified time | relevance | path

Searched defs:Struct (Results 1 – 25 of 77) sorted by relevance

1234

/prebuilts/go/linux-x86/src/go/types/
Dstruct.go18 type Struct struct { struct
19 fields []*Var // fields != nil indicates the struct is set up (possibly with len(fields) == 0)
20 tags []string // field tags; nil if there are no tags
43 func (s *Struct) NumFields() int { return len(s.fields) }
46 func (s *Struct) Field(i int) *Var { return s.fields[i] }
49 func (s *Struct) Tag(i int) string {
56 func (t *Struct) Underlying() Type { return t }
57 func (t *Struct) String() string { return TypeString(t, nil) }
62 func (s *Struct) markComplete() {
68 func (check *Checker) structType(styp *Struct, e *ast.StructType) {
/prebuilts/go/linux-x86/src/cmd/compile/internal/types2/
Dstruct.go17 type Struct struct { struct
18 fields []*Var // fields != nil indicates the struct is set up (possibly with len(fields) == 0)
19 tags []string // field tags; nil if there are no tags
42 func (s *Struct) NumFields() int { return len(s.fields) }
45 func (s *Struct) Field(i int) *Var { return s.fields[i] }
48 func (s *Struct) Tag(i int) string {
55 func (s *Struct) Underlying() Type { return s }
56 func (s *Struct) String() string { return TypeString(s, nil) }
61 func (s *Struct) markComplete() {
67 func (check *Checker) structType(styp *Struct, e *syntax.StructType) {
/prebuilts/go/linux-x86/test/
Dnilptr2.go103 type Struct struct { struct
104 i int
105 j float64
106 k string
107 x [10]int
108 l []byte
Dnilcheck.go12 type Struct struct { struct
13 X int
14 Y float64
Dnilptr3.go14 type Struct struct { struct
15 X int
16 Y float64
Dtypeswitch.go18 Struct const
/prebuilts/go/linux-x86/src/encoding/binary/
Dbinary_test.go19 type Struct struct { struct
20 Int8 int8
21 Int16 int16
22 Int32 int32
23 Int64 int64
24 Uint8 uint8
25 Uint16 uint16
26 Uint32 uint32
27 Uint64 uint64
28 Float32 float32
[all …]
/prebuilts/go/linux-x86/test/fixedbugs/
Dbug329.go14 type Struct struct { struct
15 X complex128
31 func (Value) Struct(x Struct) { func
/prebuilts/rust/linux-x86/1.82.0/lib/rustlib/src/rust/library/core/tests/
Dmacros.rs7 struct Struct; struct
9 impl Trait for Struct { implementation
/prebuilts/go/linux-x86/test/fixedbugs/issue6789.dir/
Da.go12 type Struct struct { struct
13 unexported
/prebuilts/rust/linux-musl-x86/1.82.0/lib/rustlib/src/rust/library/core/tests/
Dmacros.rs7 struct Struct; struct
9 impl Trait for Struct { implementation
/prebuilts/rust/linux-x86/1.82.0/lib/rustlib/src/rust/vendor/cfg-if/src/
Dlib.rs161 struct Struct; struct
163 impl Trait for Struct { implementation
/prebuilts/rust/linux-x86/1.83.0/lib/rustlib/src/rust/vendor/cfg-if/src/
Dlib.rs161 struct Struct; struct
163 impl Trait for Struct { implementation
/prebuilts/rust/linux-x86/1.83.0/lib/rustlib/src/rust/library/core/tests/
Dmacros.rs9 struct Struct; struct
11 impl Trait for Struct { implementation
/prebuilts/rust/linux-musl-x86/1.83.0/lib/rustlib/src/rust/vendor/cfg-if/src/
Dlib.rs161 struct Struct; struct
163 impl Trait for Struct { implementation
/prebuilts/rust/linux-musl-x86/1.83.0/lib/rustlib/src/rust/library/core/tests/
Dmacros.rs9 struct Struct; struct
11 impl Trait for Struct { implementation
/prebuilts/rust/linux-musl-x86/1.82.0/lib/rustlib/src/rust/vendor/cfg-if/src/
Dlib.rs161 struct Struct; struct
163 impl Trait for Struct { implementation
/prebuilts/vndk/v34/x86/include/frameworks/av/media/codec2/core/include/
DC2ParamDef.h101 typedef S Struct; typedef
/prebuilts/vndk/v32/arm/include/frameworks/av/media/codec2/core/include/
DC2ParamDef.h101 typedef S Struct; typedef
/prebuilts/vndk/v31/x86/include/frameworks/av/media/codec2/core/include/
DC2ParamDef.h101 typedef S Struct; typedef
/prebuilts/vndk/v34/x86_64/include/frameworks/av/media/codec2/core/include/
DC2ParamDef.h101 typedef S Struct; typedef
/prebuilts/vndk/v32/x86_64/include/frameworks/av/media/codec2/core/include/
DC2ParamDef.h101 typedef S Struct; typedef
/prebuilts/vndk/v33/arm64/include/frameworks/av/media/codec2/core/include/
DC2ParamDef.h101 typedef S Struct; typedef
/prebuilts/vndk/v34/arm/include/frameworks/av/media/codec2/core/include/
DC2ParamDef.h101 typedef S Struct; typedef
/prebuilts/vndk/v33/x86/include/frameworks/av/media/codec2/core/include/
DC2ParamDef.h101 typedef S Struct; typedef

1234