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

1 2

  /external/v8/src/
ast.cc 174 ObjectLiteral::Property::Property(Literal* key,
194 ObjectLiteral::Property::Property(bool is_getter, FunctionLiteral* value) {
201 bool ObjectLiteral::Property::IsCompileTimeValue() {
208 void ObjectLiteral::Property::set_emit_store(bool emit_store) {
213 bool ObjectLiteral::Property::emit_store() {
245 void ObjectLiteral::CalculateEmitStore() {
248 ObjectLiteral::Property* property = properties()->at(i);
254 if (property->kind() == ObjectLiteral::Property::COMPUTED &&
608 void ObjectLiteral::Property::RecordTypeFeedback(TypeFeedbackOracle* oracle) {
1019 INCREASE_NODE_COUNT(ObjectLiteral)
    [all...]
prettyprinter.cc 311 void PrettyPrinter::VisitObjectLiteral(ObjectLiteral* node) {
315 ObjectLiteral::Property* property = node->properties()->at(i);
971 void AstPrinter::VisitObjectLiteral(ObjectLiteral* node) {
976 case ObjectLiteral::Property::CONSTANT:
979 case ObjectLiteral::Property::COMPUTED:
982 case ObjectLiteral::Property::MATERIALIZED_LITERAL:
985 case ObjectLiteral::Property::PROTOTYPE:
988 case ObjectLiteral::Property::GETTER:
991 case ObjectLiteral::Property::SETTER:
type-info.h 248 bool ObjectLiteralStoreIsMonomorphic(ObjectLiteral::Property* prop);
278 Handle<Map> GetObjectLiteralStoreMap(ObjectLiteral::Property* prop);
ast.h 101 V(ObjectLiteral) \
    [all...]
full-codegen.h 811 ObjectLiteral::Accessors,
816 ObjectLiteral::Accessors,
822 if (it->second == NULL) it->second = new(zone_) ObjectLiteral::Accessors();
parser.h 642 ObjectLiteral::Property* ParseObjectLiteralGetSet(bool is_getter, bool* ok);
648 ZoneList<ObjectLiteral::Property*>* properties,
661 bool IsBoilerplateProperty(ObjectLiteral::Property* property);
parser.cc     [all...]
type-info.cc 169 ObjectLiteral::Property* prop) {
290 ObjectLiteral::Property* prop) {
  /external/chromium_org/v8/src/
prettyprinter.cc 331 void PrettyPrinter::VisitObjectLiteral(ObjectLiteral* node) {
335 ObjectLiteral::Property* property = node->properties()->at(i);
1013 void AstPrinter::VisitObjectLiteral(ObjectLiteral* node) {
1018 case ObjectLiteral::Property::CONSTANT:
1021 case ObjectLiteral::Property::COMPUTED:
1024 case ObjectLiteral::Property::MATERIALIZED_LITERAL:
1027 case ObjectLiteral::Property::PROTOTYPE:
1030 case ObjectLiteral::Property::GETTER:
1033 case ObjectLiteral::Property::SETTER:
ast.cc 220 bool ObjectLiteral::Property::IsCompileTimeValue() {
227 void ObjectLiteral::Property::set_emit_store(bool emit_store) {
232 bool ObjectLiteral::Property::emit_store() {
264 void ObjectLiteral::CalculateEmitStore(Zone* zone) {
270 ObjectLiteral::Property* property = properties()->at(i);
276 if ((property->kind() == ObjectLiteral::Property::MATERIALIZED_LITERAL ||
277 property->kind() == ObjectLiteral::Property::COMPUTED) &&
692 void ObjectLiteral::Property::RecordTypeFeedback(TypeFeedbackOracle* oracle) {
    [all...]
typing.cc 351 void AstTyper::VisitObjectLiteral(ObjectLiteral* expr) {
352 ZoneList<ObjectLiteral::Property*>* properties = expr->properties();
354 ObjectLiteral::Property* prop = properties->at(i);
357 if ((prop->kind() == ObjectLiteral::Property::MATERIALIZED_LITERAL &&
359 prop->kind() == ObjectLiteral::Property::COMPUTED) {
ast.h 105 V(ObjectLiteral) \
    [all...]
full-codegen.h     [all...]
type-info.h 233 class ObjectLiteral;
parser.cc     [all...]
parser.h 673 ObjectLiteral::Property* ParseObjectLiteralGetSet(bool is_getter, bool* ok);
679 ZoneList<ObjectLiteral::Property*>* properties,
687 bool IsBoilerplateProperty(ObjectLiteral::Property* property);
type-info.cc 201 ObjectLiteral::Property* prop) {
332 ObjectLiteral::Property* prop) {
  /external/v8/test/cctest/
test-func-name-inference.cc 215 TEST(ObjectLiteral) {
  /external/chromium_org/v8/test/cctest/
test-func-name-inference.cc 206 TEST(ObjectLiteral) {
  /external/v8/src/arm/
full-codegen-arm.cc     [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc     [all...]
  /external/v8/src/mips/
full-codegen-mips.cc     [all...]
  /external/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...]

Completed in 230 milliseconds

1 2