HomeSort by relevance Sort by last modified time
    Searched refs:StructField (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/parse/
parser_unittest.py 149 [ast.StructField('a', None, None, 'int32', None),
150 ast.StructField('b', None, None, 'double', None)]))])
169 [ast.StructField('a', None, None, 'int32', None),
170 ast.StructField('b', None, None, 'double', None)]))])
196 ast.StructField('a', None, None, 'int32', None),
197 ast.StructField('b', None, None, 'SomeOtherStruct', None)]))])
413 ast.StructField('number', None, ast.Ordinal(0), 'int8',
459 [ast.StructField('a0', None, ast.Ordinal(0), 'int32', None),
460 ast.StructField('a1', None, ast.Ordinal(1), 'int32', None),
461 ast.StructField('a2', None, ast.Ordinal(2), 'int32', None)
    [all...]
  /build/blueprint/proptools/
clone.go 258 type typeFieldMap map[reflect.Type][]reflect.StructField
261 // Stores an atomic pointer to map caching Type to its StructField
271 func typeFields(typ reflect.Type) []reflect.StructField {
279 typeFields := make([]reflect.StructField, typ.NumField())
extend_test.go 835 dstField, srcField reflect.StructField,
852 dstField, srcField reflect.StructField,
869 dstField, srcField reflect.StructField,
924 dstField, srcField reflect.StructField,
962 dstField, srcField reflect.StructField,
1288 dstField, srcField reflect.StructField,
proptools.go 42 func HasTag(field reflect.StructField, name, value string) bool {
extend.go 156 dstField, srcField reflect.StructField,
160 dstField, srcField reflect.StructField,
164 dstField, srcField reflect.StructField,
170 dstField, srcField reflect.StructField,
282 var dstField reflect.StructField
  /prebuilts/go/darwin-x86/src/cmd/fix/
jnitype_test.go 78 Name: "jni.StructField",
cftype_test.go 78 Name: "cftype.StructField",
  /prebuilts/go/linux-x86/src/cmd/fix/
jnitype_test.go 78 Name: "jni.StructField",
cftype_test.go 78 Name: "cftype.StructField",
  /external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
UnittestWellKnownTypes.cs 166 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.TestProtos.TestWellKnownTypes), global::Google.Protobuf.TestProtos.TestWellKnownTypes.Parser, new[]{ "AnyField", "ApiField", "DurationField", "EmptyField", "FieldMaskField", "SourceContextField", "StructField", "TimestampField", "TypeField", "DoubleField", "FloatField", "Int64Field", "Uint64Field", "Int32Field", "Uint32Field", "BoolField", "StringField", "BytesField", "ValueField" }, null, null, null),
167 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.TestProtos.RepeatedWellKnownTypes), global::Google.Protobuf.TestProtos.RepeatedWellKnownTypes.Parser, new[]{ "AnyField", "ApiField", "DurationField", "EmptyField", "FieldMaskField", "SourceContextField", "StructField", "TimestampField", "TypeField", "DoubleField", "FloatField", "Int64Field", "Uint64Field", "Int32Field", "Uint32Field", "BoolField", "StringField", "BytesField" }, null, null, null),
168 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.TestProtos.OneofWellKnownTypes), global::Google.Protobuf.TestProtos.OneofWellKnownTypes.Parser, new[]{ "AnyField", "ApiField", "DurationField", "EmptyField", "FieldMaskField", "SourceContextField", "StructField", "TimestampField", "TypeField", "DoubleField", "FloatField", "Int64Field", "Uint64Field", "Int32Field", "Uint32Field", "BoolField", "StringField", "BytesField" }, new[]{ "OneofField" }, null, null),
169 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.TestProtos.MapWellKnownTypes), global::Google.Protobuf.TestProtos.MapWellKnownTypes.Parser, new[]{ "AnyField", "ApiField", "DurationField", "EmptyField", "FieldMaskField", "SourceContextField", "StructField", "TimestampField", "TypeField", "DoubleField", "FloatField", "Int64Field", "Uint64Field", "Int32Field", "Uint32Field", "BoolField", "StringField", "BytesField" }, null, null, new pbr::GeneratedClrTypeInfo[] { null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, })
207 StructField = other.structField_ != null ? other.StructField.Clone() : null;
289 public global::Google.Protobuf.WellKnownTypes.Struct StructField {
445 if (!object.Equals(StructField, other.StructField)) return false;
469 if (structField_ != null) hash ^= StructField.GetHashCode()
    [all...]
  /prebuilts/go/darwin-x86/src/reflect/
all_test.go     [all...]
example_test.go 114 typ := reflect.StructOf([]reflect.StructField{
type.go 150 Field(i int) StructField
156 FieldByIndex(index []int) StructField
160 FieldByName(name string) (StructField, bool)
174 FieldByNameFunc(match func(string) bool) (StructField, bool)
424 type structField struct {
430 func (f *structField) offset() uintptr {
434 func (f *structField) anon() bool {
442 fields []structField // sorted by offset
961 func (t *rtype) Field(i int) StructField {
969 func (t *rtype) FieldByIndex(index []int) StructField {
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
all_test.go     [all...]
example_test.go 114 typ := reflect.StructOf([]reflect.StructField{
type.go 150 Field(i int) StructField
156 FieldByIndex(index []int) StructField
160 FieldByName(name string) (StructField, bool)
174 FieldByNameFunc(match func(string) bool) (StructField, bool)
424 type structField struct {
430 func (f *structField) offset() uintptr {
434 func (f *structField) anon() bool {
442 fields []structField // sorted by offset
961 func (t *rtype) Field(i int) StructField {
969 func (t *rtype) FieldByIndex(index []int) StructField {
    [all...]
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/
ast.py 340 class StructField(Definition):
352 super(StructField, self).__init__(name, **kwargs)
359 return super(StructField, self).__eq__(other) and \
366 # This needs to be declared after |StructField|.
370 _list_item_type = (Const, Enum, StructField)
parser.py 190 p[0] = ast.StructField(p[3], p[1], p[4], p[2], p[5])
  /build/soong/android/
arch.go 362 var fields []reflect.StructField
425 variantFields := func(names []string) []reflect.StructField {
426 ret := make([]reflect.StructField, len(names))
436 archFields := make([]reflect.StructField, len(archTypeList))
451 fields = append([]reflect.StructField{reflect.StructField{
457 archFields[i] = reflect.StructField{
498 return reflect.StructOf([]reflect.StructField{
499 reflect.StructField{
503 reflect.StructField{
    [all...]
  /prebuilts/go/darwin-x86/src/debug/dwarf/
type.go 148 Field []*StructField
152 // A StructField represents a field in a struct, union, or C++ class type.
153 type StructField struct {
513 t.Field = make([]*StructField, 0, 8)
520 f := new(StructField)
  /prebuilts/go/linux-x86/src/debug/dwarf/
type.go 148 Field []*StructField
152 // A StructField represents a field in a struct, union, or C++ class type.
153 type StructField struct {
513 t.Field = make([]*StructField, 0, 8)
520 f := new(StructField)
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
translate.py 288 parsed_struct.body, ast.StructField, parsed_struct.name)
323 parsed_field: {ast.StructField} Parsed struct field.
327 {mojom.StructField} AST struct field.
329 field = mojom.StructField()
module.py 290 class StructField(Field): pass
306 fields: {List[StructField]} The members of the struct.
341 field = StructField(name, kind, ordinal, default, attributes)
  /external/golang-protobuf/proto/
pointer_unsafe.go 76 func toField(f *reflect.StructField) field {
  /prebuilts/go/darwin-x86/src/encoding/xml/
typeinfo.go 113 func structFieldInfo(typ reflect.Type, f *reflect.StructField) (*fieldInfo, error) {

Completed in 539 milliseconds

1 2 3