Home
last modified time | relevance | path

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

/external/v8/src/parsing/
Dpreparser.h94 : code_(TypeField::encode(kNull)), variables_(nullptr) {} in PreParserExpression()
100 return PreParserExpression(TypeField::encode(kExpression), variables);
104 return PreParserExpression(TypeField::encode(kSpreadExpression), in Spread()
111 PreParserExpression expression(TypeField::encode(kIdentifierExpression) | in FromIdentifier()
124 return PreParserExpression(TypeField::encode(kExpression), in BinaryOperation()
132 return PreParserExpression(TypeField::encode(kExpression), in BinaryOperation()
135 return PreParserExpression(TypeField::encode(kExpression)); in BinaryOperation()
139 return PreParserExpression(TypeField::encode(kExpression) | in Assignment()
150 return PreParserExpression(TypeField::encode(kObjectLiteralExpression), in ObjectLiteral()
156 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.h123 bool IsRegister() const { return TypeField::decode(bit_field_) == REGISTER; } in IsRegister()
146 class TypeField : public BitField<LocationType, 0, 1> {};
147 class LocationField : public BitField<int32_t, TypeField::kNext, 31> {};
154 bit_field_ = TypeField::encode(type) | in LinkageLocation()
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.h267 UsePositionType type() const { return TypeField::decode(flags_); } in NON_EXPORTED_BASE()
293 typedef BitField<UsePositionType, 0, 2> TypeField; in NON_EXPORTED_BASE() typedef
Dregister-allocator.cc279 flags_ = TypeField::encode(type) | HintTypeField::encode(hint_type) | in UsePosition()
363 flags_ = TypeField::encode(type) | in set_type()
/external/v8/src/heap/
Dslot-set.h412 : type_and_offset_(TypeField::encode(type) | in TypedSlot()
423 SlotType type() const { return TypeField::decode(type_and_offset()); } in type()
429 return std::make_pair(TypeField::decode(t_and_o), in GetTypeAndOffset()
450 TypeField::encode(CLEARED_SLOT) | OffsetField::encode(0)); in Clear()
584 class TypeField : public BitField<SlotType, 29, 3> {};
/external/v8/src/ast/
Dast.h754 Type type() const { return TypeField::decode(bit_field_); } in type()
766 bit_field_ |= TypeField::encode(type); in ReturnStatement()
772 class TypeField
1030 Type type() const { return TypeField::decode(bit_field_); } in type()
1100 class TypeField : public BitField<Type, Expression::kNextBitFieldIndex, 4> {};
1103 bit_field_ = TypeField::update(bit_field_, kSmi); in Literal()
1108 bit_field_ = TypeField::update(bit_field_, kHeapNumber); in Literal()
1113 bit_field_ = TypeField::update(bit_field_, kBigInt); in Literal()
1118 bit_field_ = TypeField::update(bit_field_, kString); in Literal()
1123 bit_field_ = TypeField::update(bit_field_, kSymbol); in Literal()
[all …]
/external/v8/src/profiler/
Dheap-snapshot-generator.h62 Type type() const { return TypeField::decode(bit_field_); } in type()
81 class TypeField : public BitField<Type, 0, 3> {};
Dheap-snapshot-generator.cc38 : bit_field_(TypeField::encode(type) | FromIndexField::encode(from)), in HeapGraphEdge()
50 : bit_field_(TypeField::encode(type) | FromIndexField::encode(from)), in HeapGraphEdge()
/external/v8/src/ia32/
Dassembler-ia32.h425 Type type() const { return TypeField::decode(data_); } in type()
444 class TypeField: public BitField<Type, 0, 2> {};
Dassembler-ia32.cc183 data_ = NextField::encode(next) | TypeField::encode(type); in init()