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

/external/chromium_org/v8/src/
H A Dpreparser.cc1229 bool is_getter = false; local
1231 ParseIdentifierNameOrGetOrSet(&is_getter, &is_setter, CHECK_OK);
1232 if ((is_getter || is_setter) && peek() != Token::COLON) {
1247 PropertyKind type = is_getter ? kGetterProperty : kSetterProperty;
H A Dast.cc209 ObjectLiteralProperty::ObjectLiteralProperty(bool is_getter, argument
213 kind_ = is_getter ? GETTER : SETTER;
H A Dparser.cc3738 bool is_getter = false; local
3741 ParseIdentifierNameOrGetOrSet(&is_getter, &is_setter, CHECK_OK);
3744 if ((is_getter || is_setter) && peek() != Token::COLON) {
3762 PropertyKind type = is_getter ? kGetterProperty : kSetterProperty;
3777 factory()->NewObjectLiteralProperty(is_getter, value, next_pos);
H A Dast.h1488 ObjectLiteralProperty(bool is_getter, FunctionLiteral* value);
3121 ObjectLiteral::Property* NewObjectLiteralProperty(bool is_getter, argument
3125 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 175 milliseconds