/external/v8/src/parsing/ |
D | preparser.h | 94 : 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/ |
D | UnittestWellKnownTypes.cs | 209 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/ |
D | linkage.h | 123 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()
|
D | instruction.h | 396 value_ |= TypeField::encode(type); in ImmediateOperand() 400 ImmediateType type() const { return TypeField::decode(value_); } in type() 419 class TypeField : public BitField64<ImmediateType, 3, 1> {};
|
D | register-allocator.h | 267 UsePositionType type() const { return TypeField::decode(flags_); } in NON_EXPORTED_BASE() 293 typedef BitField<UsePositionType, 0, 2> TypeField; in NON_EXPORTED_BASE() typedef
|
D | register-allocator.cc | 279 flags_ = TypeField::encode(type) | HintTypeField::encode(hint_type) | in UsePosition() 363 flags_ = TypeField::encode(type) | in set_type()
|
/external/v8/src/heap/ |
D | slot-set.h | 412 : 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/ |
D | ast.h | 754 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/ |
D | heap-snapshot-generator.h | 62 Type type() const { return TypeField::decode(bit_field_); } in type() 81 class TypeField : public BitField<Type, 0, 3> {};
|
D | heap-snapshot-generator.cc | 38 : 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/ |
D | assembler-ia32.h | 425 Type type() const { return TypeField::decode(data_); } in type() 444 class TypeField: public BitField<Type, 0, 2> {};
|
D | assembler-ia32.cc | 183 data_ = NextField::encode(next) | TypeField::encode(type); in init()
|