Home
last modified time | relevance | path

Searched refs:function_length (Results 1 – 12 of 12) sorted by relevance

/third_party/node/deps/v8/src/parsing/
Dpreparser-logger.h19 void LogFunction(int end, int num_parameters, int function_length, in LogFunction() argument
23 function_length_ = function_length; in LogFunction()
29 int function_length() const { return function_length_; } in function_length() function
Dpreparse-data.h121 int function_length, int num_inner_functions);
299 int* function_length, int* num_inner_functions, bool* uses_super_property,
Dpreparse-data.cc232 DeclarationScope* function_scope, int function_length, in SetSkippableFunction() argument
237 builder_->function_length_ = function_length; in SetSkippableFunction()
588 int* function_length, int* num_inner_functions, bool* uses_super_property, in GetDataForSkippableFunction() argument
607 *function_length = *num_parameters; in GetDataForSkippableFunction()
609 *function_length = scope_data_->ReadVarint32(); in GetDataForSkippableFunction()
Dpreparser.cc338 function_scope, formals.function_length, in ParseFunctionLiteral()
375 formals->function_length, GetLastFunctionLiteralId()); in ParseStatementListAndLogFunction()
Dparser.cc2729 int function_length = -1; in ParseFunctionLiteral() local
2758 &num_parameters, &function_length, &produced_preparse_data); in ParseFunctionLiteral()
2766 &num_parameters, &function_length, &has_duplicate_parameters, in ParseFunctionLiteral()
2809 function_length, duplicate_parameters, function_syntax_kind, in ParseFunctionLiteral()
2830 int* function_length, in SkipFunction() argument
2856 num_parameters, function_length, &num_inner_functions, in SkipFunction()
2925 *function_length = logger->function_length(); in SkipFunction()
3033 DeclarationScope* function_scope, int* num_parameters, int* function_length, in ParseFunction() argument
3101 *function_length = formals.function_length; in ParseFunction()
Dpreparse-data-impl.h156 int* function_length, int* num_inner_functions, bool* uses_super_property,
Dparser.h449 int* function_length,
461 int* function_length, bool* has_duplicate_parameters,
Dpreparser.h680 int parameter_count, int function_length,
1010 int* num_parameters, int* function_length,
Dparser-base.h71 if (!is_optional && !is_rest && function_length == arity) { in UpdateArityAndFunctionLength()
72 ++function_length; in UpdateArityAndFunctionLength()
80 int function_length = 0; member
4642 formal_parameters.function_length, in ParseArrowFunctionLiteral()
/third_party/node/deps/v8/src/builtins/
Daccessors.h43 V(_, function_length, FunctionLength, kHasNoSideEffect, \
/third_party/node/deps/v8/src/ast/
Dast.h2196 int function_length() { return function_length_; } in function_length() function
2311 int function_length, FunctionSyntaxKind function_syntax_kind,
2319 function_length_(function_length), in Expression()
3225 int parameter_count, int function_length,
3234 parameter_count, function_length, function_syntax_kind,
/third_party/node/deps/v8/src/objects/
Dshared-function-info.cc531 shared_info->set_length(lit->function_length()); in InitFromFunctionLiteral()