Searched refs:is_async (Results 1 - 11 of 11) sorted by relevance
/external/v8/src/parsing/ |
H A D | parser-base.h | 895 bool parenthesized_formals, bool is_async, 916 if (is_async && !classifier->is_valid_async_arrow_formal_parameters()) { 995 bool* is_async, bool* ok); 998 bool is_async; local 999 return ParsePrimaryExpression(classifier, &is_async, ok); 1040 ExpressionClassifier* classifier, bool* is_async, bool* ok); 1042 bool* is_async, bool* ok); 1044 ExpressionT expression, bool* is_async, ExpressionClassifier* classifier, 1048 bool is_async, 1483 bool* is_async, boo 893 ValidateArrowFormalParameters(const ExpressionClassifier* classifier, ExpressionT expr, bool parenthesized_formals, bool is_async, bool* ok) argument 1482 ParsePrimaryExpression(ExpressionClassifier* classifier, bool* is_async, bool* ok) argument 1887 bool is_async = false; local 2248 bool is_async = allow_harmony_async_await() && peek() == Token::ASYNC && local 2778 bool is_async = false; local 2899 ParseMemberWithNewPrefixesExpression( ExpressionClassifier* classifier, bool* is_async, bool* ok) argument 2964 ParseMemberExpression(ExpressionClassifier* classifier, bool* is_async, bool* ok) argument 3095 ParseMemberExpressionContinuation( ExpressionT expression, bool* is_async, ExpressionClassifier* classifier, bool* ok) argument 3313 ParseArrowFunctionLiteral( bool accept_IN, const FormalParametersT& formal_parameters, bool is_async, const ExpressionClassifier& formals_classifier, bool* ok) argument 3627 const bool is_async = IsAsyncMethod(method_type); local [all...] |
H A D | parser.h | 538 ZoneList<v8::internal::Statement*>* body, bool is_async, bool* ok); 1274 ZoneList<v8::internal::Statement*>* body, bool is_async, bool* ok) { 1280 if (is_async) { 1272 AddParameterInitializationBlock( const ParserFormalParameters& parameters, ZoneList<v8::internal::Statement*>* body, bool is_async, bool* ok) argument
|
H A D | preparser.cc | 396 const bool is_async = flags & ParseFunctionFlags::kIsAsync; local 397 DCHECK(!is_generator || !is_async); 414 : is_async ? FunctionKind::kAsyncFunction
|
H A D | parser.cc | 1097 bool is_async = allow_harmony_async_await() && shared_info->is_async(); local 1098 if (is_async) { 1145 true, formals, is_async, formals_classifier, &ok); 2177 const bool is_async = flags & ParseFunctionFlags::kIsAsync; local 2178 DCHECK(!is_generator || !is_async); 2198 : is_async ? FunctionKind::kAsyncFunction 2222 !is_async && !(allow_harmony_restrictive_generators() && is_generator)) {
|
H A D | preparser.h | 864 bool is_async, bool* ok) {} 862 AddParameterInitializationBlock( const PreParserFormalParameters& parameters, PreParserStatementList list, bool is_async, bool* ok) argument
|
/external/v8/src/ |
H A D | objects-printer.cc | 928 } else if (shared()->is_async()) {
|
H A D | factory.cc | 1334 CHECK(!function->shared()->is_async());
|
H A D | objects-inl.h | 5869 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_async, kIsAsyncFunction) 5880 return is_generator() || is_async();
|
H A D | objects.h | 7017 DECL_BOOLEAN_ACCESSORS(is_async)
|
H A D | objects.cc | 12675 } else if (shared_info->is_async()) { 12681 } else if (shared_info->is_async()) {
|
/external/v8/src/debug/ |
H A D | debug.cc | 1389 if (!generator_object->function()->shared()->is_async()) return;
|
Completed in 395 milliseconds