Searched refs:invoke (Results 1 - 11 of 11) sorted by relevance
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
H A D | ets_utils.cpp | 43 EtsMethod *invoke = lambda->GetClass()->GetMethod("invoke"); in InvokeVoid() local 44 if (invoke == nullptr) { in InvokeVoid() 45 LOG(FATAL, RUNTIME) << "No method 'invoke' found"; in InvokeVoid() 49 invoke->GetPandaMethod()->InvokeVoid(coro, &arg); in InvokeVoid()
|
/arkcompiler/ets_frontend/ets2panda/checker/types/ |
H A D | type.cpp | 44 auto *invoke = AsETSObjectType()->GetOwnProperty<checker::PropertyType::INSTANCE_METHOD>("invoke"); in IsLambdaObject() local 45 if (invoke != nullptr && invoke->TsType() != nullptr && invoke->TsType()->IsETSFunctionType()) { in IsLambdaObject()
|
/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/java_cases/ |
H A D | ReflectionTest.java | 26 method.invoke(clazz.getDeclaredConstructor().newInstance()); in main()
|
/arkcompiler/ets_frontend/ets2panda/checker/types/ets/ |
H A D | etsObjectType.h | 288 auto *invoke = GetOwnProperty<PropertyType::INSTANCE_METHOD>(FUNCTIONAL_INTERFACE_INVOKE_METHOD_NAME); in GetFunctionalInterfaceInvokeType() local 289 ASSERT(invoke && invoke->TsType() && invoke->TsType()->IsETSFunctionType()); in GetFunctionalInterfaceInvokeType() 290 return invoke->TsType()->AsETSFunctionType(); in GetFunctionalInterfaceInvokeType()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | json_builder.h | 152 std::invoke(std::forward<T>(array), builder); in Stringify() 161 std::invoke(std::forward<T>(object), builder); in Stringify()
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | json_builder.h | 156 std::invoke(std::forward<T>(array), builder); in Stringify() 165 std::invoke(std::forward<T>(object), builder); in Stringify()
|
/arkcompiler/ets_frontend/ets2panda/evaluate/ |
H A D | entityDeclarator-inl.h | 41 var = std::invoke(std::forward<F>(irCreator), debugInfoPlugin_.GetDebugInfoDeserializer(), program, in ImportGlobalEntity()
|
/arkcompiler/ets_frontend/ets2panda/declgen_ets2ts/ |
H A D | declgenEts2Ts.cpp | 317 const auto *invoke = objectType->GetOwnProperty<checker::PropertyType::INSTANCE_METHOD>( in GenObjectType() local 319 ASSERT(invoke && invoke->TsType() && invoke->TsType()->IsETSFunctionType()); in GenObjectType() 320 GenType(invoke->TsType()); in GenObjectType()
|
/arkcompiler/ets_frontend/ets2panda/checker/ |
H A D | ETSchecker.cpp | 56 auto *invoke = type->GetOwnProperty<PropertyType::INSTANCE_METHOD>(FUNCTIONAL_INTERFACE_INVOKE_METHOD_NAME); in SetupFunctionalInterface() local 57 auto *invokeType = invoke->TsType()->AsETSFunctionType(); in SetupFunctionalInterface()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_stable_array.cpp | 829 if (UNLIKELY(std::invoke(predicate, convertedCur.GetRawData()))) { in FindRawData() 874 if (UNLIKELY(std::invoke(predicate, convertedCur.GetRawData()))) { in FindLastRawData()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | [all...] |
Completed in 37 milliseconds