Searched defs:TypeField (Results 1 - 7 of 7) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
H A DUnittestWellKnownTypes.cs166 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, })
209 TypeField = other.typeField_ != null ? other.TypeField.Clone() : null;
309 public global::Google.Protobuf.WellKnownTypes.Type TypeField { property in class:Google.Protobuf.TestProtos.TestWellKnownTypes
447 if (!object.Equals(TypeField, other.TypeField)) return false;
471 if (typeField_ != null) hash ^= TypeField
1002 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Type> TypeField { property in class:Google.Protobuf.TestProtos.RepeatedWellKnownTypes
1467 public global::Google.Protobuf.WellKnownTypes.Type TypeField { property in class:Google.Protobuf.TestProtos.OneofWellKnownTypes
1586 TypeField = 9, enumerator in enum:Google.Protobuf.TestProtos.OneofWellKnownTypes.OneofFieldOneofCase
2112 public pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Type> TypeField { property in class:Google.Protobuf.TestProtos.MapWellKnownTypes
[all...]
/external/v8/src/compiler/
H A Dlinkage.h109 class TypeField : public BitField<LocationType, 0, 1> {}; class in class:v8::internal::compiler::LinkageLocation
110 class LocationField : public BitField<int32_t, TypeField::kNext, 31> {};
117 bit_field_ = TypeField::encode(type) |
138 bool IsRegister() const { return TypeField::decode(bit_field_) == REGISTER; }
H A Dinstruction.h396 value_ |= TypeField::encode(type);
400 ImmediateType type() const { return TypeField::decode(value_); }
419 class TypeField : public BitField64<ImmediateType, 3, 1> {}; class in class:v8::internal::compiler::ImmediateOperand
H A Dregister-allocator.h263 UsePositionType type() const { return TypeField::decode(flags_); }
289 typedef BitField<UsePositionType, 0, 2> TypeField; typedef in class:v8::internal::compiler::final
/external/v8/src/profiler/
H A Dheap-snapshot-generator.h42 Type type() const { return TypeField::decode(bit_field_); }
61 class TypeField : public BitField<Type, 0, 3> {}; class in class:v8::internal::BASE_EMBEDDED
/external/v8/src/
H A Dproperty-details.h79 // Must fit in the BitField PropertyDetails::TypeField.
239 value_ = TypeField::encode(type) | AttributesField::encode(attributes) |
251 value_ = TypeField::encode(type)
313 PropertyType type() const { return TypeField::decode(value_); }
363 // NOTE: TypeField overlaps with KindField and LocationField.
364 class TypeField : public BitField<PropertyType, 0, 2> {}; class in class:v8::internal::BASE_EMBEDDED
366 STATIC_ASSERT(TypeField::kShift == KindField::kShift);
367 STATIC_ASSERT(TypeField::kNext == LocationField::kNext);
/external/v8/src/parsing/
H A Dpreparser.h128 : code_(TypeField::encode(kEmpty)), identifiers_(nullptr) {}
134 return PreParserExpression(TypeField::encode(kExpression), identifiers);
138 return PreParserExpression(TypeField::encode(kSpreadExpression),
144 PreParserExpression expression(TypeField::encode(kIdentifierExpression) |
153 return PreParserExpression(TypeField::encode(kBinaryOperationExpression));
157 return PreParserExpression(TypeField::encode(kExpression) |
163 return PreParserExpression(TypeField::encode(kObjectLiteralExpression),
169 return PreParserExpression(TypeField::encode(kArrayLiteralExpression),
174 return PreParserExpression(TypeField::encode(kStringLiteralExpression));
178 return PreParserExpression(TypeField
373 typedef BitField<Type, 0, 3> TypeField; typedef in class:v8::internal::PreParserExpression
[all...]

Completed in 210 milliseconds