Searched refs:is_getter (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/v8/src/
H A Dpreparser.cc1283 bool is_getter = false; local
1285 ParseIdentifierNameOrGetOrSet(&is_getter, &is_setter, CHECK_OK);
1286 if ((is_getter || is_setter) && peek() != i::Token::COLON) {
1301 PropertyType type = is_getter ? kGetterProperty : kSetterProperty;
H A Dast.cc212 ObjectLiteralProperty::ObjectLiteralProperty(bool is_getter, argument
216 kind_ = is_getter ? GETTER : SETTER;
H A Dparser.cc3934 ObjectLiteral::Property* Parser::ParseObjectLiteralGetSet(bool is_getter, argument
3960 return factory()->NewObjectLiteralProperty(is_getter, value);
3998 bool is_getter = false; local
4001 ParseIdentifierNameOrGetOrSet(&is_getter, &is_setter, CHECK_OK);
4004 if ((is_getter || is_setter) && peek() != Token::COLON) {
4008 ParseObjectLiteralGetSet(is_getter, CHECK_OK);
H A Dparser.h673 ObjectLiteral::Property* ParseObjectLiteralGetSet(bool is_getter, bool* ok);
H A Dast.h1449 ObjectLiteralProperty(bool is_getter, FunctionLiteral* value);
3049 ObjectLiteral::Property* NewObjectLiteralProperty(bool is_getter, argument
3052 new(zone_) ObjectLiteral::Property(is_getter, value);
/external/v8/src/
H A Dpreparser.cc1255 bool is_getter = false; local
1257 ParseIdentifierNameOrGetOrSet(&is_getter, &is_setter, CHECK_OK);
1258 if ((is_getter || is_setter) && peek() != i::Token::COLON) {
1273 PropertyType type = is_getter ? kGetterProperty : kSetterProperty;
H A Dast.cc194 ObjectLiteral::Property::Property(bool is_getter, FunctionLiteral* value) { argument
197 kind_ = is_getter ? GETTER : SETTER;
H A Dast.h1336 Property(bool is_getter, FunctionLiteral* value);
2807 ObjectLiteral::Property* NewObjectLiteralProperty(bool is_getter, argument
2810 new(zone_) ObjectLiteral::Property(is_getter, value);
H A Dparser.cc4056 ObjectLiteral::Property* Parser::ParseObjectLiteralGetSet(bool is_getter, argument
4081 return factory()->NewObjectLiteralProperty(is_getter, value);
4119 bool is_getter = false; local
4122 ParseIdentifierNameOrGetOrSet(&is_getter, &is_setter, CHECK_OK);
4125 if ((is_getter || is_setter) && peek() != Token::COLON) {
4129 ParseObjectLiteralGetSet(is_getter, CHECK_OK);
H A Dparser.h642 ObjectLiteral::Property* ParseObjectLiteralGetSet(bool is_getter, bool* ok);

Completed in 890 milliseconds