Searched refs:IsGeneratorFunction (Results 1 - 21 of 21) sorted by relevance

/external/v8/src/
H A Dglobals.h1054 inline bool IsGeneratorFunction(FunctionKind kind) { function in namespace:v8::internal
1065 return IsGeneratorFunction(kind) || IsAsyncFunction(kind);
1117 if (IsGeneratorFunction(kind)) return false;
H A Dcontexts.h530 if (IsGeneratorFunction(kind)) {
H A Dfactory.cc2085 if (IsGeneratorFunction(kind)) {
H A Dobjects.cc12282 IsGeneratorFunction(function->shared()->kind()));
12301 IsGeneratorFunction(function->shared()->kind())
H A Dapi.cc3052 bool Value::IsGeneratorFunction() const { function in class:v8::Value
/external/v8/src/ast/
H A Dast-numbering.cc581 if (IsGeneratorFunction(node->kind()) || IsAsyncFunction(node->kind())) {
H A Dscopes.cc831 if (IsGeneratorFunction(function_kind)) return "function*";
/external/v8/src/parsing/
H A Dparser.cc2001 IsGeneratorFunction(function_kind));
4171 bool is_generator = IsGeneratorFunction(kind);
4734 if (IsGeneratorFunction(kind)) {
H A Dparser-base.h368 bool is_generator() const { return IsGeneratorFunction(kind_); }
/external/v8/src/full-codegen/arm64/
H A Dfull-codegen-arm64.cc137 DCHECK(!IsGeneratorFunction(info->literal()->kind()) || locals_count == 0);
/external/v8/src/full-codegen/ia32/
H A Dfull-codegen-ia32.cc121 DCHECK(!IsGeneratorFunction(literal()->kind()) || locals_count == 0);
/external/v8/src/full-codegen/x64/
H A Dfull-codegen-x64.cc120 DCHECK(!IsGeneratorFunction(info->literal()->kind()) || locals_count == 0);
/external/v8/src/full-codegen/x87/
H A Dfull-codegen-x87.cc121 DCHECK(!IsGeneratorFunction(literal()->kind()) || locals_count == 0);
/external/v8/src/full-codegen/arm/
H A Dfull-codegen-arm.cc132 DCHECK(!IsGeneratorFunction(info->literal()->kind()) || locals_count == 0);
/external/v8/src/full-codegen/mips/
H A Dfull-codegen-mips.cc141 DCHECK(!IsGeneratorFunction(info->literal()->kind()) || locals_count == 0);
/external/v8/src/full-codegen/mips64/
H A Dfull-codegen-mips64.cc140 DCHECK(!IsGeneratorFunction(info->literal()->kind()) || locals_count == 0);
/external/v8/src/full-codegen/ppc/
H A Dfull-codegen-ppc.cc138 DCHECK(!IsGeneratorFunction(info->literal()->kind()) || locals_count == 0);
/external/v8/src/full-codegen/s390/
H A Dfull-codegen-s390.cc138 DCHECK(!IsGeneratorFunction(info->literal()->kind()) || locals_count == 0);
/external/v8/include/
H A Dv8.h1815 bool IsGeneratorFunction() const;
/external/v8/test/cctest/
H A Dtest-api.cc1561 CHECK(gen->IsGeneratorFunction());
1565 CHECK(!genObj->IsGeneratorFunction());
1569 CHECK(!object->IsGeneratorFunction());
1573 CHECK(!func->IsGeneratorFunction());
/external/v8/src/crankshaft/
H A Dhydrogen.cc163 if (IsGeneratorFunction(info()->shared_info()->kind())) {

Completed in 4223 milliseconds