HomeSort by relevance Sort by last modified time
    Searched defs:TypeField (Results 1 - 7 of 7) sorted by null

  /external/v8/src/compiler/
linkage.h 109 class TypeField : public BitField<LocationType, 0, 1> {};
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; }
instruction.h 396 value_ |= TypeField::encode(type);
400 ImmediateType type() const { return TypeField::decode(value_); }
419 class TypeField : public BitField64<ImmediateType, 3, 1> {};
    [all...]
register-allocator.h 263 UsePositionType type() const { return TypeField::decode(flags_); }
289 typedef BitField<UsePositionType, 0, 2> TypeField;
    [all...]
  /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, })
209 TypeField = other.typeField_ != null ? other.TypeField.Clone() : null;
309 public global::Google.Protobuf.WellKnownTypes.Type TypeField {
447 if (!object.Equals(TypeField, other.TypeField)) return false;
471 if (typeField_ != null) hash ^= TypeField.GetHashCode()
    [all...]
  /external/v8/src/profiler/
heap-snapshot-generator.h 43 Type type() const { return TypeField::decode(bit_field_); }
62 class TypeField : public BitField<Type, 0, 3> {};
  /external/v8/src/parsing/
preparser.h 131 : code_(TypeField::encode(kEmpty)), variables_(nullptr) {}
137 return PreParserExpression(TypeField::encode(kExpression), variables);
141 return PreParserExpression(TypeField::encode(kSpreadExpression),
148 PreParserExpression expression(TypeField::encode(kIdentifierExpression) |
161 return PreParserExpression(TypeField::encode(kExpression),
169 return PreParserExpression(TypeField::encode(kExpression),
172 return PreParserExpression(TypeField::encode(kExpression));
176 return PreParserExpression(TypeField::encode(kExpression) |
183 return PreParserExpression(TypeField::encode(kObjectLiteralExpression),
188 return PreParserExpression(TypeField::encode(kArrayLiteralExpression)
    [all...]
  /external/v8/src/ast/
ast.h 904 Type type() const { return TypeField::decode(bit_field_); }
912 bit_field_ |= TypeField::encode(type);
917 class TypeField
    [all...]

Completed in 505 milliseconds