Searched refs:funcRef (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/ |
H A D | lambdaLowering.cpp | 925 static ir::ArrowFunctionExpression *CreateWrappingLambda(public_lib::Context *ctx, ir::Expression *funcRef) in CreateWrappingLambda() argument 929 auto *signature = GuessSignature(ctx->checker->AsETSChecker(), funcRef); in CreateWrappingLambda() 931 auto *parent = funcRef->Parent(); in CreateWrappingLambda() 954 auto *callExpr = util::NodeAllocator::ForceSetParent<ir::CallExpression>(allocator, funcRef, std::move(callArgs), in CreateWrappingLambda() 984 static ir::AstNode *ConvertFunctionReference(public_lib::Context *ctx, ir::Expression *funcRef) in ConvertFunctionReference() argument 987 ASSERT(funcRef->IsIdentifier() || in ConvertFunctionReference() 988 (funcRef->IsMemberExpression() && in ConvertFunctionReference() 989 funcRef->AsMemberExpression()->Kind() == ir::MemberExpressionKind::PROPERTY_ACCESS && in ConvertFunctionReference() 990 funcRef->AsMemberExpression()->Property()->IsIdentifier())); in ConvertFunctionReference() 992 if (funcRef in ConvertFunctionReference() [all...] |
/arkcompiler/toolchain/tooling/agent/ |
H A D | debugger_impl.cpp | 1088 auto funcRef = DebuggerApi::GenerateFuncFromBuffer(vm_, dest.data(), dest.size(), in EvaluateOnCallFrame() local 1090 auto res = DebuggerApi::EvaluateViaFuncCall(const_cast<EcmaVM *>(vm_), funcRef, in EvaluateOnCallFrame() 1355 Local<FunctionRef> funcRef = FunctionRef::Undefined(vm_); in ProcessSingleBreakpoint() local 1357 funcRef = CheckAndGenerateCondFunc(condition); in ProcessSingleBreakpoint() 1358 if (funcRef->IsUndefined()) { in ProcessSingleBreakpoint() 1363 auto matchLocationCbFunc = [this, &funcRef](const JSPtLocation &location) -> bool { in ProcessSingleBreakpoint() 1364 return DebuggerApi::SetBreakpoint(jsDebugger_, location, funcRef); in ProcessSingleBreakpoint() 1554 auto funcRef = DebuggerApi::GenerateFuncFromBuffer(vm_, dest.data(), dest.size(), in CallFunctionOn() local 1557 auto res = DebuggerApi::CallFunctionOnCall(const_cast<EcmaVM *>(vm_), funcRef, in CallFunctionOn() 2112 Local<FunctionRef> funcRef in CheckAndGenerateCondFunc() local [all...] |
/arkcompiler/ets_runtime/ecmascript/debugger/ |
H A D | debugger_api.h | 148 static Local<JSValueRef> EvaluateViaFuncCall(EcmaVM *ecmaVm, Local<FunctionRef> funcRef, 150 static Local<JSValueRef> CallFunctionOnCall(EcmaVM *ecmaVm, Local<FunctionRef> funcRef,
|
H A D | debugger_api.cpp | 849 Local<JSValueRef> DebuggerApi::EvaluateViaFuncCall(EcmaVM *ecmaVm, Local<FunctionRef> funcRef, in EvaluateViaFuncCall() argument 860 auto result = funcRef->Call(ecmaVm, JSValueRef::Undefined(ecmaVm), args.data(), args.size()); in EvaluateViaFuncCall() 868 Local<JSValueRef> DebuggerApi::CallFunctionOnCall(EcmaVM *ecmaVm, Local<FunctionRef> funcRef, in CallFunctionOnCall() argument 879 auto result = funcRef->Call(ecmaVm, JSValueRef::Undefined(ecmaVm), args.data(), args.size()); in CallFunctionOnCall()
|
/arkcompiler/ets_runtime/ecmascript/module/ |
H A D | js_module_source_text.cpp | 413 Local<FunctionRef> funcRef = maybeFuncRef; in LoadNativeModuleImpl() local 414 auto exportObject = funcRef->Call(vm, JSValueRef::Undefined(vm), arguments.data(), arguments.size()); in LoadNativeModuleImpl()
|
Completed in 14 milliseconds