/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_function_kind.h | 51 ASYNC_GENERATOR_FUNCTION, member in panda::ecmascript::FunctionKind
|
H A D | js_function.h | 279 return (kind >= FunctionKind::BASE_CONSTRUCTOR) && (kind <= FunctionKind::ASYNC_GENERATOR_FUNCTION) && in HasPrototype()
|
H A D | js_function.cpp | 36 kind == FunctionKind::ASYNC_GENERATOR_FUNCTION || kind == FunctionKind::NONE_FUNCTION) { in InitializeJSFunction() 42 if (kind == FunctionKind::ASYNC_GENERATOR_FUNCTION) { in InitializeJSFunction()
|
H A D | object_factory.cpp | 4862 JSFunction::InitializeJSFunction(thread_, asyncGeneratorFunc, FunctionKind::ASYNC_GENERATOR_FUNCTION); in NewJSAsyncGeneratorFunction() 4993 case FunctionKind::ASYNC_GENERATOR_FUNCTION: { in NewJSFunction()
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
H A D | constpool_value.h | 33 ASYNC_GENERATOR_FUNCTION, member in panda::ecmascript::ConstPoolType
|
H A D | js_pandafile.cpp | 321 case panda_file::FunctionKind::ASYNC_GENERATOR_FUNCTION: in GetFunctionKind() 322 kind = FunctionKind::ASYNC_GENERATOR_FUNCTION; in GetFunctionKind() 359 case ConstPoolType::ASYNC_GENERATOR_FUNCTION: in GetFunctionKind() 360 kind = FunctionKind::ASYNC_GENERATOR_FUNCTION; in GetFunctionKind()
|
H A D | literal_data_extractor.cpp | 95 kind = FunctionKind::ASYNC_GENERATOR_FUNCTION; in ExtractObjectDatas() 205 kind = FunctionKind::ASYNC_GENERATOR_FUNCTION; in EnumerateLiteralVals() 470 kind = FunctionKind::ASYNC_GENERATOR_FUNCTION; in ExtractObjectDatas() 604 kind = FunctionKind::ASYNC_GENERATOR_FUNCTION; in GetDatasIgnoreType()
|
H A D | panda_file_translator.cpp | 264 type == ConstPoolType::ASYNC_GENERATOR_FUNCTION); in ParseConstPool() 335 type == ConstPoolType::ASYNC_GENERATOR_FUNCTION); in ParseFuncAndLiteralConstPool() 1607 index = jsPandaFile->GetOrInsertConstantPool(ConstPoolType::ASYNC_GENERATOR_FUNCTION, methodId, in TranslateBytecode()
|
/arkcompiler/runtime_core/abc2program/ |
H A D | dump_utils.cpp | 58 {panda_file::FunctionKind::ASYNC_GENERATOR_FUNCTION, "FunctionKind::ASYNC_GENERATOR_FUNCTION"},
|
/arkcompiler/runtime_core/abc2program/tests/cpp_sources/ |
H A D | hello_world_test.cpp | 388 panda::panda_file::FunctionKind::ASYNC_GENERATOR_FUNCTION); in HWTEST_F()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_function_stub_builder.cpp | 587 getKind == FunctionKind::ASYNC_GENERATOR_FUNCTION) {
in InitializeJSFunction()
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | file_items.h | 80 ASYNC_GENERATOR_FUNCTION = 0x5, member in panda::panda_file::ClassTag::MethodTag::FieldTag::FunctionKind
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | stub_builder-inl.h | 3404 .And(Int32LessThanOrEqual(kind, Int32(static_cast<int32_t>(FunctionKind::ASYNC_GENERATOR_FUNCTION)))) in HasPrototype() 3426 GateRef left = Int32Equal(kind, Int32(static_cast<int32_t>(FunctionKind::ASYNC_GENERATOR_FUNCTION))); in IsGeneratorKind()
|
H A D | new_object_stub_builder.cpp | 925 static_cast<int64_t>(FunctionKind::ASYNC_GENERATOR_FUNCTION) };
in LoadHClassFromMethod()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
H A D | pandagen.cpp | 76 funcKind_ = panda::panda_file::FunctionKind::ASYNC_GENERATOR_FUNCTION; in SetFunctionKind()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stubs.cpp | 100 if (kind == FunctionKind::ASYNC_GENERATOR_FUNCTION) { in DEF_RUNTIME_STUBS()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins.cpp | 387 factory_->CreateFunctionClass(FunctionKind::ASYNC_GENERATOR_FUNCTION, JSFunction::SIZE, in Initialize()
|