Home
last modified time | relevance | path

Searched refs:TypeField (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/parsing/
Dpreparser.h131 : code_(TypeField::encode(kEmpty)), variables_(nullptr) {} in PreParserExpression()
137 return PreParserExpression(TypeField::encode(kExpression), variables);
141 return PreParserExpression(TypeField::encode(kSpreadExpression), in Spread()
148 PreParserExpression expression(TypeField::encode(kIdentifierExpression) | in FromIdentifier()
161 return PreParserExpression(TypeField::encode(kExpression), in BinaryOperation()
169 return PreParserExpression(TypeField::encode(kExpression), in BinaryOperation()
172 return PreParserExpression(TypeField::encode(kExpression)); in BinaryOperation()
176 return PreParserExpression(TypeField::encode(kExpression) | in Assignment()
183 return PreParserExpression(TypeField::encode(kObjectLiteralExpression), in ObjectLiteral()
188 return PreParserExpression(TypeField::encode(kArrayLiteralExpression), in ArrayLiteral()
[all …]
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
DUnittestWellKnownTypes.cs209 TypeField = other.typeField_ != null ? other.TypeField.Clone() : null; in TestWellKnownTypes()
309 public global::Google.Protobuf.WellKnownTypes.Type TypeField { property in Google.Protobuf.TestProtos.TestWellKnownTypes
447 if (!object.Equals(TypeField, other.TypeField)) return false; in Equals()
471 if (typeField_ != null) hash ^= TypeField.GetHashCode(); in GetHashCode()
524 output.WriteMessage(TypeField); in WriteTo()
586 size += 1 + pb::CodedOutputStream.ComputeMessageSize(TypeField); in CalculateSize()
677 TypeField.MergeFrom(other.TypeField); in MergeFrom()
1002 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Type> TypeField { property in Google.Protobuf.TestProtos.RepeatedWellKnownTypes
1347 case OneofFieldOneofCase.TypeField: in OneofWellKnownTypes()
1348 TypeField = other.TypeField.Clone(); in OneofWellKnownTypes()
[all …]
/external/v8/src/compiler/
Dlinkage.h109 class TypeField : public BitField<LocationType, 0, 1> {};
110 class LocationField : public BitField<int32_t, TypeField::kNext, 31> {};
117 bit_field_ = TypeField::encode(type) | in LinkageLocation()
138 bool IsRegister() const { return TypeField::decode(bit_field_) == REGISTER; } in IsRegister()
Dinstruction.h396 value_ |= TypeField::encode(type); in ImmediateOperand()
400 ImmediateType type() const { return TypeField::decode(value_); } in type()
419 class TypeField : public BitField64<ImmediateType, 3, 1> {};
Dregister-allocator.h263 UsePositionType type() const { return TypeField::decode(flags_); } in NON_EXPORTED_BASE()
289 typedef BitField<UsePositionType, 0, 2> TypeField; in NON_EXPORTED_BASE() typedef
Dregister-allocator.cc279 flags_ = TypeField::encode(type) | HintTypeField::encode(hint_type) | in UsePosition()
365 flags_ = TypeField::encode(type) | in set_type()
/external/v8/src/heap/
Dslot-set.h339 type_and_offset_.SetValue(TypeField::encode(type) | in TypedSlot()
351 SlotType type() { return TypeField::decode(type_and_offset_.Value()); } in type()
357 return std::make_pair(TypeField::decode(type_and_offset), in GetTypeAndOffset()
369 type_and_offset_.SetValue(TypeField::encode(CLEARED_SLOT) | in Clear()
507 class TypeField : public BitField<SlotType, 29, 3> {};
/external/v8/src/profiler/
Dheap-snapshot-generator.h43 Type type() const { return TypeField::decode(bit_field_); } in type()
62 class TypeField : public BitField<Type, 0, 3> {};
Dheap-snapshot-generator.cc27 : bit_field_(TypeField::encode(type) | FromIndexField::encode(from)), in HeapGraphEdge()
39 : bit_field_(TypeField::encode(type) | FromIndexField::encode(from)), in HeapGraphEdge()
/external/v8/src/x87/
Dassembler-x87.h433 Type type() const { return TypeField::decode(data_); } in type()
452 class TypeField: public BitField<Type, 0, 2> {};
Dassembler-x87.cc77 data_ = NextField::encode(next) | TypeField::encode(type); in init()
/external/v8/src/ia32/
Dassembler-ia32.h435 Type type() const { return TypeField::decode(data_); } in type()
454 class TypeField: public BitField<Type, 0, 2> {};
Dassembler-ia32.cc162 data_ = NextField::encode(next) | TypeField::encode(type); in init()
/external/v8/src/ast/
Dast.h904 Type type() const { return TypeField::decode(bit_field_); } in type()
912 bit_field_ |= TypeField::encode(type); in ReturnStatement()
917 class TypeField