Searched refs:is_get (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/parsing/
H A Dscanner.h420 void IsGetOrSet(bool* is_get, bool* is_set) { argument
426 *is_get = strncmp(token, "get", 3) == 0;
427 *is_set = !*is_get && strncmp(token, "set", 3) == 0;
H A Dparser-base.h1005 ExpressionT ParsePropertyName(IdentifierT* name, bool* is_get, bool* is_set,
1816 IdentifierT* name, bool* is_get, bool* is_set, bool* is_await,
1861 scanner()->IsGetOrSet(is_get, is_set);
1883 bool is_get = false; local
1903 name, &is_get, &is_set, &is_await, is_computed_name, classifier,
1996 DCHECK(!is_get);
2047 if (is_get || is_set) {
2066 is_get ? FunctionKind::kGetterFunction : FunctionKind::kSetterFunction,
2080 is_get ? ObjectLiteralProperty::GETTER : ObjectLiteralProperty::SETTER,
1815 ParsePropertyName( IdentifierT* name, bool* is_get, bool* is_set, bool* is_await, bool* is_computed_name, ExpressionClassifier* classifier, bool* ok) argument

Completed in 52 milliseconds