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

  /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/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; }
register-allocator.h 263 UsePositionType type() const { return TypeField::decode(flags_); }
289 typedef BitField<UsePositionType, 0, 2> TypeField;
    [all...]
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.cc 279 flags_ = TypeField::encode(type) | HintTypeField::encode(hint_type) |
365 flags_ = TypeField::encode(type) |
    [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/heap/
slot-set.h 339 type_and_offset_.SetValue(TypeField::encode(type) |
351 SlotType type() { return TypeField::decode(type_and_offset_.Value()); }
357 return std::make_pair(TypeField::decode(type_and_offset),
369 type_and_offset_.SetValue(TypeField::encode(CLEARED_SLOT) |
507 class TypeField : public BitField<SlotType, 29, 3> {};
  /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> {};
heap-snapshot-generator.cc 27 : bit_field_(TypeField::encode(type) | FromIndexField::encode(from)),
39 : bit_field_(TypeField::encode(type) | FromIndexField::encode(from)),
    [all...]
  /art/compiler/optimizing/
nodes_vector.h 88 SetPackedField<TypeField>(packed_type);
109 return GetPackedField<TypeField>();
193 using TypeField = BitField<DataType::Type, kFieldType, kFieldTypeSize>;
    [all...]
nodes.h     [all...]
  /external/v8/src/x87/
assembler-x87.h 433 Type type() const { return TypeField::decode(data_); }
452 class TypeField: public BitField<Type, 0, 2> {};
    [all...]
assembler-x87.cc 77 data_ = NextField::encode(next) | TypeField::encode(type);
    [all...]
  /external/v8/src/ia32/
assembler-ia32.h 435 Type type() const { return TypeField::decode(data_); }
454 class TypeField: public BitField<Type, 0, 2> {};
    [all...]
assembler-ia32.cc 162 data_ = NextField::encode(next) | TypeField::encode(type);
    [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 438 milliseconds