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

  /external/chromium_org/v8/src/
ast.cc 211 bool ObjectLiteral::Property::IsCompileTimeValue() {
218 void ObjectLiteral::Property::set_emit_store(bool emit_store) {
223 bool ObjectLiteral::Property::emit_store() {
228 void ObjectLiteral::CalculateEmitStore(Zone* zone) {
234 ObjectLiteral::Property* property = properties()->at(i);
240 if ((property->kind() == ObjectLiteral::Property::MATERIALIZED_LITERAL ||
241 property->kind() == ObjectLiteral::Property::COMPUTED) &&
252 bool ObjectLiteral::IsBoilerplateProperty(ObjectLiteral::Property* property) {
254 property->kind() != ObjectLiteral::Property::PROTOTYPE
    [all...]
parser.h 397 typedef ObjectLiteral::Property* ObjectLiteralProperty;
399 typedef ZoneList<ObjectLiteral::Property*>* PropertyList;
436 static bool IsBoilerplateProperty(ObjectLiteral::Property* property) {
437 return ObjectLiteral::IsBoilerplateProperty(property);
565 ZoneList<ObjectLiteral::Property*>* NewPropertyList(int size, Zone* zone) {
566 return new(zone) ZoneList<ObjectLiteral::Property*>(size, zone);
prettyprinter.cc 321 void PrettyPrinter::VisitObjectLiteral(ObjectLiteral* node) {
325 ObjectLiteral::Property* property = node->properties()->at(i);
988 void AstPrinter::VisitObjectLiteral(ObjectLiteral* node) {
993 case ObjectLiteral::Property::CONSTANT:
996 case ObjectLiteral::Property::COMPUTED:
999 case ObjectLiteral::Property::MATERIALIZED_LITERAL:
1002 case ObjectLiteral::Property::PROTOTYPE:
1005 case ObjectLiteral::Property::GETTER:
1008 case ObjectLiteral::Property::SETTER:
typing.cc 397 void AstTyper::VisitObjectLiteral(ObjectLiteral* expr) {
398 ZoneList<ObjectLiteral::Property*>* properties = expr->properties();
400 ObjectLiteral::Property* prop = properties->at(i);
403 if ((prop->kind() == ObjectLiteral::Property::MATERIALIZED_LITERAL &&
405 prop->kind() == ObjectLiteral::Property::COMPUTED) {
ast.h 82 V(ObjectLiteral) \
    [all...]
full-codegen.h 838 ObjectLiteral::Accessors,
842 TemplateHashMap<Literal, ObjectLiteral::Accessors,
849 if (it->second == NULL) it->second = new(zone_) ObjectLiteral::Accessors();
    [all...]
hydrogen.cc     [all...]
full-codegen.cc 202 void BreakableStatementChecker::VisitObjectLiteral(ObjectLiteral* expr) {
    [all...]
parser.cc     [all...]
runtime.cc 470 bool should_have_fast_elements = (flags & ObjectLiteral::kFastElements) != 0;
471 bool has_function_literal = (flags & ObjectLiteral::kHasFunction) != 0;
    [all...]
  /external/chromium_org/v8/test/cctest/
test-func-name-inference.cc 211 TEST(ObjectLiteral) {
  /external/chromium_org/v8/src/arm64/
full-codegen-arm64.cc     [all...]
  /external/chromium_org/v8/src/x64/
full-codegen-x64.cc     [all...]
  /external/chromium_org/v8/src/arm/
full-codegen-arm.cc     [all...]
  /external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc     [all...]
  /external/chromium_org/v8/src/mips/
full-codegen-mips.cc     [all...]
  /external/chromium_org/v8/src/x87/
full-codegen-x87.cc     [all...]

Completed in 622 milliseconds