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

12

/external/chromium_org/v8/src/
H A Dpreparser.h192 void set_is_generator(bool is_generator) { is_generator_ = is_generator; } argument
193 bool is_generator() const { return is_generator_; } function in class:v8::internal::ParserBase::BASE_EMBEDDED
198 DCHECK(!is_generator());
441 bool is_generator() const { return function_state_->is_generator(); } function in class:v8::internal::ParserBase
1368 bool is_generator, bool* ok);
1452 bool is_generator,
1519 bool is_generator, bool* ok);
1534 Token::Value fvar_init_op, bool is_generator, boo
1532 ParseEagerFunctionBody( PreParserIdentifier function_name, int pos, Variable* fvar, Token::Value fvar_init_op, bool is_generator, bool* ok) argument
1545 ParseEagerFunctionBody( PreParserIdentifier function_name, int pos, Variable* fvar, Token::Value fvar_init_op, bool is_generator, bool* ok) argument
1948 bool is_generator = allow_harmony_object_literals_ && Check(Token::MUL); local
2529 bool is_generator = Check(Token::MUL); local
[all...]
H A Dparser.h597 Token::Value fvar_init_op, bool is_generator, bool* ok);
826 Token::Value fvar_init_op, bool is_generator, bool* ok);
884 Token::Value fvar_init_op, bool is_generator, bool* ok) {
886 is_generator, ok);
882 ParseEagerFunctionBody( const AstRawString* name, int pos, Variable* fvar, Token::Value fvar_init_op, bool is_generator, bool* ok) argument
H A Dpreparser.cc122 StrictMode strict_mode, bool is_generator, ParserRecorder* log) {
132 function_state.set_is_generator(is_generator);
346 bool is_generator = Check(Token::MUL); local
351 is_generator ? FunctionKind::kGeneratorFunction
121 PreParseLazyFunction( StrictMode strict_mode, bool is_generator, ParserRecorder* log) argument
H A Dparser.cc1926 bool is_generator = Check(Token::MUL); local
1932 is_generator ? FunctionKind::kGeneratorFunction
2574 if (is_generator()) {
3453 bool is_generator = IsGeneratorFunction(kind); local
3520 if (is_generator) {
3657 is_generator, CHECK_OK);
3769 Token::Value fvar_init_op, bool is_generator, bool* ok) {
3787 if (is_generator) {
3808 if (is_generator) {
3850 is_generator(),
3767 ParseEagerFunctionBody( const AstRawString* function_name, int pos, Variable* fvar, Token::Value fvar_init_op, bool is_generator, bool* ok) argument
[all...]
H A Dfactory.cc1307 if (prototype->IsTheHole() && !function->shared()->is_generator()) {
1331 if (function->shared()->is_generator()) {
1346 if (!function->shared()->is_generator()) {
1687 DCHECK(function->shared()->is_generator());
H A Dliveedit.cc1802 JavaScriptFrame::cast(frame)->function()->shared()->is_generator()) {
H A Dcode-stubs.h582 bool is_generator() const { return IsGeneratorFunction(kind()); }
H A Dast.h2425 bool is_generator() { function in class:v8::internal::FINAL
H A Ddebug.cc1978 if (shared->is_generator()) {
H A Druntime.cc2803 return isolate->heap()->ToBoolean(f->shared()->is_generator());
3007 RUNTIME_ASSERT(function->shared()->is_generator());
3033 RUNTIME_ASSERT(frame->function()->shared()->is_generator());
8689 RUNTIME_ASSERT(!function->shared()->is_generator());
H A Dobjects.cc9101 DCHECK(!shared()->is_generator());
9112 DCHECK(!shared()->is_generator());
9495 if (function->shared()->is_generator()) {
9520 if (!function->shared()->is_generator()) {
H A Dhydrogen-instructions.h7486 bool is_generator() const { return IsGeneratorFunction(kind_); } function in class:v8::FINAL::FINAL
H A Dobjects-inl.h5592 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_generator, kIsGenerator)
H A Dobjects.h6798 DECL_BOOLEAN_ACCESSORS(is_generator)
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DParseTreeTransforms.py1570 if node.is_generator and node.has_fused_arguments:
2287 if node.is_generator:
2312 if node.is_generator:
2631 node.pos, is_generator=def_node.is_generator),
H A DFlowControl.py733 if node.is_generator:
H A DNodes.py1501 is_generator = False variable in class:FuncDefNode
3734 is_generator = True variable in class:GeneratorDefNode
/external/chromium_org/v8/src/heap/
H A Dobjects-visiting-inl.h775 if (shared_info->is_generator()) {
/external/chromium_org/v8/src/arm/
H A Dfull-codegen-arm.cc156 DCHECK(!info->function()->is_generator() || locals_count == 0);
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc158 DCHECK(!info->function()->is_generator() || locals_count == 0);
/external/chromium_org/v8/src/ia32/
H A Dfull-codegen-ia32.cc146 DCHECK(!info->function()->is_generator() || locals_count == 0);
/external/chromium_org/v8/src/mips/
H A Dfull-codegen-mips.cc164 DCHECK(!info->function()->is_generator() || locals_count == 0);
/external/chromium_org/v8/src/mips64/
H A Dfull-codegen-mips64.cc161 DCHECK(!info->function()->is_generator() || locals_count == 0);
/external/chromium_org/v8/src/x64/
H A Dfull-codegen-x64.cc146 DCHECK(!info->function()->is_generator() || locals_count == 0);
/external/chromium_org/v8/src/x87/
H A Dfull-codegen-x87.cc146 DCHECK(!info->function()->is_generator() || locals_count == 0);

Completed in 2531 milliseconds

12