Home
last modified time | relevance | path

Searched refs:ObjectLiteralProperty (Results 1 – 25 of 34) sorted by relevance

12

/external/v8/src/parsing/
Dparameter-initializer-rewriter.cc49 ZoneList<ObjectLiteralProperty*>* props = class_literal->properties(); in VisitClassLiteral()
51 ObjectLiteralProperty* prop = props->at(i); in VisitClassLiteral()
Dparser.h345 typedef ObjectLiteral::Property* ObjectLiteralProperty; typedef
405 Scope* scope, ObjectLiteralProperty* property, bool* has_function) { in CheckFunctionLiteralInsideTopLevelObjectLiteral()
488 static ObjectLiteralProperty* EmptyObjectLiteralProperty() { return NULL; } in EmptyObjectLiteralProperty()
646 void SetFunctionNameFromPropertyName(ObjectLiteralProperty* property,
658 V8_INLINE ObjectLiteralProperty* RewriteNonPatternObjectLiteralProperty(
659 ObjectLiteralProperty* property, const ExpressionClassifier* classifier,
1021 V8_INLINE ObjectLiteralProperty* RewriteNonPatternObjectLiteralProperty(
1022 ObjectLiteralProperty* property, const ExpressionClassifier* classifier,
Dpreparser.h449 ObjectLiteralProperty::Kind kind, in NewObjectLiteralProperty()
601 typedef PreParserExpression ObjectLiteralProperty; typedef
Dparser.cc5420 ObjectLiteralProperty* ParserTraits::RewriteNonPatternObjectLiteralProperty( in RewriteNonPatternObjectLiteralProperty()
5421 ObjectLiteralProperty* property, const ExpressionClassifier* classifier, in RewriteNonPatternObjectLiteralProperty()
5446 ObjectLiteralProperty* Parser::RewriteNonPatternObjectLiteralProperty( in RewriteNonPatternObjectLiteralProperty()
5447 ObjectLiteralProperty* property, const ExpressionClassifier* classifier, in RewriteNonPatternObjectLiteralProperty()
5487 ObjectLiteralProperty* property, const AstRawString* name) { in SetFunctionNameFromPropertyName()
5497 if (property->kind() == ObjectLiteralProperty::PROTOTYPE) return; in SetFunctionNameFromPropertyName()
5502 if (property->kind() == ObjectLiteralProperty::GETTER) { in SetFunctionNameFromPropertyName()
5505 } else if (property->kind() == ObjectLiteralProperty::SETTER) { in SetFunctionNameFromPropertyName()
5510 DCHECK_EQ(ObjectLiteralProperty::COMPUTED, property->kind()); in SetFunctionNameFromPropertyName()
5515 DCHECK_EQ(ObjectLiteralProperty::COMPUTED, property->kind()); in SetFunctionNameFromPropertyName()
Dparser-base.h89 typedef typename Traits::Type::ObjectLiteralProperty ObjectLiteralPropertyT;
1723 name_expression, value, ObjectLiteralProperty::COMPUTED, false, in ParsePropertyDefinition()
1767 ObjectLiteralProperty::COMPUTED, in ParsePropertyDefinition()
1819 is_get ? ObjectLiteralProperty::GETTER : ObjectLiteralProperty::SETTER, in ParsePropertyDefinition()
Dpattern-rewriter.cc394 for (ObjectLiteralProperty* property : *pattern->properties()) { in VisitObjectLiteral()
/external/v8/src/ast/
Dast-expression-visitor.cc241 ZoneList<ObjectLiteralProperty*>* props = expr->properties(); in VisitObjectLiteral()
243 ObjectLiteralProperty* prop = props->at(i); in VisitObjectLiteral()
366 ZoneList<ObjectLiteralProperty*>* props = expr->properties(); in VisitClassLiteral()
368 ObjectLiteralProperty* prop = props->at(i); in VisitClassLiteral()
Dast-expression-rewriter.h36 virtual void VisitObjectLiteralProperty(ObjectLiteralProperty* property);
Dast-literal-reindexer.h29 void VisitObjectLiteralProperty(ObjectLiteralProperty* property);
Dast.cc224 ObjectLiteralProperty::ObjectLiteralProperty(Expression* key, Expression* value, in ObjectLiteralProperty() function in v8::internal::ObjectLiteralProperty
235 ObjectLiteralProperty::ObjectLiteralProperty(AstValueFactory* ast_value_factory, in ObjectLiteralProperty() function in v8::internal::ObjectLiteralProperty
Dprettyprinter.h93 void PrintObjectLiteralProperty(ObjectLiteralProperty* property);
Dast-numbering.cc43 void VisitObjectLiteralProperty(ObjectLiteralProperty* property);
493 ObjectLiteralProperty* node) { in VisitObjectLiteralProperty()
Dast-literal-reindexer.cc273 ObjectLiteralProperty* node) { in VisitObjectLiteralProperty()
Dast.h1435 class ObjectLiteralProperty final : public ZoneObject {
1478 ObjectLiteralProperty(Expression* key, Expression* value, Kind kind,
1480 ObjectLiteralProperty(AstValueFactory* ast_value_factory, Expression* key,
1500 typedef ObjectLiteralProperty Property;
1552 ObjectLiteralProperty* getter;
1553 ObjectLiteralProperty* setter;
2795 typedef ObjectLiteralProperty Property;
3279 Expression* key, Expression* value, ObjectLiteralProperty::Kind kind, in NewObjectLiteralProperty()
Dast-expression-rewriter.cc266 ObjectLiteralProperty* property) { in VisitObjectLiteralProperty()
Dprettyprinter.cc787 ObjectLiteralProperty* property) { in PrintObjectLiteralProperty()
/external/v8/src/interpreter/
Dbytecode-generator.h85 ObjectLiteralProperty* property, int slot_number = 0);
87 ObjectLiteralProperty* property,
Dbytecode-generator.cc2045 Register home_object, ObjectLiteralProperty* property, Register value_out) { in VisitObjectLiteralAccessor()
2058 ObjectLiteralProperty* property, in VisitSetHomeObject()
/external/v8/src/compiler/
Dast-loop-assignment-analyzer.cc127 ZoneList<ObjectLiteralProperty*>* properties = e->properties(); in VisitClassLiteral()
143 ZoneList<ObjectLiteralProperty*>* properties = e->properties(); in VisitObjectLiteral()
Dast-graph-builder.h334 ObjectLiteralProperty* property,
436 ObjectLiteralProperty* property);
Dast-graph-builder.cc1912 Node* home_object, ObjectLiteralProperty* property) { in VisitObjectLiteralAccessor()
3746 ObjectLiteralProperty* property, in BuildSetHomeObject()
/external/v8/src/full-codegen/
Dfull-codegen.h538 void EmitAccessor(ObjectLiteralProperty* property);
575 void EmitPropertyKey(ObjectLiteralProperty* property, BailoutId bailout_id);
Dfull-codegen.cc914 void FullCodeGenerator::EmitPropertyKey(ObjectLiteralProperty* property, in EmitPropertyKey()
/external/v8/src/wasm/
Dasm-wasm-builder.cc431 ZoneList<ObjectLiteralProperty*>* props = expr->properties(); in VisitObjectLiteral()
433 ObjectLiteralProperty* prop = props->at(i); in VisitObjectLiteral()
/external/v8/src/
Dtyping-asm.cc623 ZoneList<ObjectLiteralProperty*>* props = expr->properties(); in VisitObjectLiteral()
625 ObjectLiteralProperty* prop = props->at(i); in VisitObjectLiteral()

12