Home
last modified time | relevance | path

Searched refs:is_wrapped (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/objects/
Dscript-inl.h44 bool Script::is_wrapped() const { in ACCESSORS()
54 DCHECK(!is_wrapped()); in set_eval_from_shared()
69 DCHECK(is_wrapped()); in wrapped_arguments()
Dscript.h76 inline bool is_wrapped() const;
Dshared-function-info.h422 DECL_BOOLEAN_ACCESSORS(is_wrapped)
Dshared-function-info-inl.h152 BIT_FIELD_ACCESSORS(SharedFunctionInfo, flags, is_wrapped, in BIT_FIELD_ACCESSORS() argument
/external/v8/src/parsing/
Dparse-info.cc62 DCHECK_IMPLIES(is_toplevel(), !Script::cast(shared->script())->is_wrapped()); in ParseInfo()
65 set_wrapped_as_function(shared->is_wrapped()); in ParseInfo()
194 set_wrapped_as_function(script->is_wrapped()); in SetScriptForToplevelCompile()
Dparser.cc2477 bool is_wrapped = function_type == FunctionLiteral::kWrapped; in ParseFunctionLiteral() local
2478 DCHECK_EQ(is_wrapped, arguments_for_wrapped_function != nullptr); in ParseFunctionLiteral()
2496 function_state_->next_function_is_likely_called() || is_wrapped in ParseFunctionLiteral()
2612 if (!is_wrapped) Expect(Token::LPAREN, CHECK_OK); in ParseFunctionLiteral()
2623 DCHECK(!is_wrapped); in ParseFunctionLiteral()
3068 bool is_wrapped = function_type == FunctionLiteral::kWrapped; in ParseFunction() local
3084 if (is_wrapped) { in ParseFunction()
/external/v8/src/
Dcompiler.cc1743 if (info->is_wrapped()) { in GetWrappedFunction()
1907 if (shared->is_toplevel() || shared->is_wrapped()) { in PostInstantiation()
Dobjects-printer.cc1947 if (is_wrapped()) { in ScriptPrint()
Dobjects.cc13532 if (shared_info->is_wrapped()) { in ToString()
13545 if (shared_info->is_wrapped()) { in ToString()
14033 if (!shared->is_wrapped()) return source; in GetSourceCodeHarmony()
14223 shared_info->set_is_wrapped(lit->is_wrapped()); in InitFromFunctionLiteral()
Dapi.cc2641 CHECK(shared->is_wrapped()); in CreateCodeCacheForFunction()
/external/v8/src/ast/
Dast.h2254 bool is_wrapped() const { return function_type() == kWrapped; } in is_wrapped() function