Searched refs:is_generator (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/v8/src/
H A Dpreparser.cc95 bool is_generator,
101 name, function_name_location, name_is_strict_reserved, is_generator,
107 StrictMode strict_mode, bool is_generator, ParserRecorder* log) {
115 function_state.set_is_generator(is_generator);
314 bool is_generator = allow_generators() && Check(Token::MUL); local
321 is_generator,
801 bool is_generator,
813 function_state.set_is_generator(is_generator);
91 ParseFunctionLiteral( PreParserIdentifier name, Scanner::Location function_name_location, bool name_is_strict_reserved, bool is_generator, int function_token_position, FunctionLiteral::FunctionType type, FunctionLiteral::ArityRestriction arity_restriction, bool* ok) argument
106 PreParseLazyFunction( StrictMode strict_mode, bool is_generator, ParserRecorder* log) argument
797 ParseFunctionLiteral( Identifier function_name, Scanner::Location function_name_location, bool name_is_strict_reserved, bool is_generator, int function_token_pos, FunctionLiteral::FunctionType function_type, FunctionLiteral::ArityRestriction arity_restriction, bool* ok) argument
H A Dpreparser.h168 void set_is_generator(bool is_generator) { is_generator_ = is_generator; } argument
169 bool is_generator() const { return is_generator_; } function in class:v8::internal::ParserBase::BASE_EMBEDDED
174 ASSERT(!is_generator());
348 bool is_generator() const { return function_state_->is_generator(); } function in class:v8::internal::ParserBase
1044 bool is_generator,
1110 bool is_generator,
1174 bool is_generator,
1259 (next == Token::YIELD && !is_generator()))) {
2043 bool is_generator = allow_generators() && Check(Token::MUL); local
[all...]
H A Dcontexts.h523 static int FunctionMapIndex(StrictMode strict_mode, bool is_generator) { argument
524 return is_generator
H A Dparser.cc752 bool is_generator,
758 name_is_strict_reserved, is_generator,
1018 shared_info->is_generator(),
1861 bool is_generator = allow_generators() && Check(Token::MUL); local
1868 is_generator,
2481 if (is_generator()) {
3308 bool is_generator,
3387 if (is_generator) {
3515 is_generator, CHECK_OK);
3561 FunctionLiteral::IsGeneratorFlag generator = is_generator
748 ParseFunctionLiteral( Handle<String> name, Scanner::Location function_name_location, bool name_is_strict_reserved, bool is_generator, int function_token_position, FunctionLiteral::FunctionType type, FunctionLiteral::ArityRestriction arity_restriction, bool* ok) argument
3304 ParseFunctionLiteral( Handle<String> function_name, Scanner::Location function_name_location, bool name_is_strict_reserved, bool is_generator, int function_token_pos, FunctionLiteral::FunctionType function_type, FunctionLiteral::ArityRestriction arity_restriction, bool* ok) argument
3665 ParseEagerFunctionBody( Handle<String> function_name, int pos, Variable* fvar, Token::Value fvar_init_op, bool is_generator, bool* ok) argument
[all...]
H A Dparser.h578 bool is_generator,
731 bool is_generator,
787 bool is_generator,
H A Dfactory.cc1298 if (prototype->IsTheHole() && !function->shared()->is_generator()) {
1322 if (function->shared()->is_generator()) {
1336 if (!function->shared()->is_generator()) {
1352 info->is_generator());
1693 ASSERT(function->shared()->is_generator());
1906 bool is_generator,
1921 if (is_generator) {
1903 NewSharedFunctionInfo( Handle<String> name, int number_of_literals, bool is_generator, Handle<Code> code, Handle<ScopeInfo> scope_info, Handle<FixedArray> feedback_vector) argument
H A Dcompiler.cc609 function_info->set_is_generator(lit->is_generator());
824 lit->is_generator(),
1023 literal->is_generator(),
H A Dast.h2372 bool is_generator() { function in class:v8::internal::V8_FINAL
2403 IsGeneratorFlag is_generator,
2423 IsGenerator::encode(is_generator);
3325 FunctionLiteral::IsGeneratorFlag is_generator,
3331 is_parenthesized, is_generator, position);
2391 FunctionLiteral(Zone* zone, Handle<String> name, Scope* scope, ZoneList<Statement*>* body, int materialized_literal_count, int expected_property_count, int handler_count, int parameter_count, FunctionType function_type, ParameterFlag has_duplicate_parameters, IsFunctionFlag is_function, IsParenthesizedFlag is_parenthesized, IsGeneratorFlag is_generator, int position) argument
3313 NewFunctionLiteral( Handle<String> name, Scope* scope, ZoneList<Statement*>* body, int materialized_literal_count, int expected_property_count, int handler_count, int parameter_count, FunctionLiteral::ParameterFlag has_duplicate_parameters, FunctionLiteral::FunctionType function_type, FunctionLiteral::IsFunctionFlag is_function, FunctionLiteral::IsParenthesizedFlag is_parenthesized, FunctionLiteral::IsGeneratorFlag is_generator, int position) argument
H A Dcode-stubs.h528 bool is_generator)
531 is_generator_(is_generator) { }
541 bool is_generator() const { return is_generator_; }
H A Dfull-codegen.cc1558 bool is_generator = false; local
1561 name, literals, is_generator,
H A Dfactory.h618 bool is_generator,
H A Dobjects-visiting-inl.h800 if (shared_info->is_generator()) {
H A Dcode-stubs-hydrogen.cc1274 casted_stub()->is_generator());
H A Dliveedit.cc1802 JavaScriptFrame::cast(frame)->function()->shared()->is_generator()) {
H A Dhydrogen-instructions.h7390 bool is_generator() const { return is_generator_; } function in class:V8_FINAL
7401 is_generator_(shared->is_generator()),
H A Ddebug.cc2047 if (shared->is_generator()) {
H A Dobjects.cc9739 ASSERT(!shared()->is_generator());
9750 ASSERT(!shared()->is_generator());
10079 if (function->shared()->is_generator()) {
10110 if (!function->shared()->is_generator()) {
H A Druntime.cc2951 return isolate->heap()->ToBoolean(f->shared()->is_generator());
3139 RUNTIME_ASSERT(function->shared()->is_generator());
3165 RUNTIME_ASSERT(frame->function()->shared()->is_generator());
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc157 ASSERT(!info->function()->is_generator() || locals_count == 0);
1333 info->is_generator());
/external/chromium_org/v8/src/x64/
H A Dfull-codegen-x64.cc145 ASSERT(!info->function()->is_generator() || locals_count == 0);
1303 info->is_generator());
/external/chromium_org/v8/src/arm/
H A Dfull-codegen-arm.cc155 ASSERT(!info->function()->is_generator() || locals_count == 0);
1324 info->is_generator());
H A Dlithium-codegen-arm.cc5414 instr->hydrogen()->is_generator());
/external/chromium_org/v8/src/ia32/
H A Dfull-codegen-ia32.cc145 ASSERT(!info->function()->is_generator() || locals_count == 0);
1269 info->is_generator());
/external/chromium_org/v8/src/mips/
H A Dfull-codegen-mips.cc163 ASSERT(!info->function()->is_generator() || locals_count == 0);
1335 info->is_generator());
/external/chromium_org/v8/src/x87/
H A Dfull-codegen-x87.cc145 ASSERT(!info->function()->is_generator() || locals_count == 0);
1266 info->is_generator());

Completed in 1513 milliseconds

12