Home
last modified time | relevance | path

Searched defs:func (Results 1 – 25 of 494) sorted by relevance

12345678910>>...20

/arkcompiler/runtime_core/static_core/runtime/include/
Dstack_walker-inl.h27 bool InvokeCallback(Func func, [[maybe_unused]] compiler::VRegInfo regInfo, VRegRef &vreg) in InvokeCallback()
45 bool StackWalker::IterateAllRegsForCFrame(Func func) in IterateAllRegsForCFrame()
68 bool StackWalker::IterateRegsForCFrameStatic(Func func) in IterateRegsForCFrameStatic()
102 bool StackWalker::IterateRegsForCFrameDynamic(Func func) in IterateRegsForCFrameDynamic()
135 bool StackWalker::IterateRegsForIFrameInternal(F frameHandler, Func func) in IterateRegsForIFrameInternal()
156 bool StackWalker::IterateRegsForIFrame(Func func) in IterateRegsForIFrame()
171 bool StackWalker::IterateRegs(Func func) in IterateRegs()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dcfgo.h33 explicit ChainingPattern(CGFunc &func) : OptimizationPattern(func) in ChainingPattern()
54 …explicit FlipBRPattern(CGFunc &func, LoopAnalysis &loop) : OptimizationPattern(func), loopInfo(loo… in FlipBRPattern()
84 explicit UnreachBBPattern(CGFunc &func) : OptimizationPattern(func) in UnreachBBPattern()
103 explicit EmptyBBPattern(CGFunc &func) : OptimizationPattern(func) in EmptyBBPattern()
115 …CFGOptimizer(CGFunc &func, MemPool &memPool, LoopAnalysis &loop) : Optimizer(func, memPool), loopI… in CFGOptimizer()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Dgraph_checker_macros.h29 #define CHECKER_DO_IF_NOT(cond, func) ASSERT_DO((cond), func) argument
32 #define CHECKER_DO_IF_NOT_VISITOR_INTERNAL(visitor, klass, cond, func) ASSERT_DO((cond), func) argument
35 #define CHECKER_DO_IF_NOT_AND_PRINT(cond, func) ASSERT_DO((cond), func; PrintFailedMethodAndPass();) argument
37 #define CHECKER_DO_IF_NOT_AND_PRINT_VISITOR(visitor, cond, func) \ argument
76 #define ABCKIT_DO_IF_NOT_VISITOR(visitor, cond, func) \ argument
82 #define ABCKIT_DO_IF_NOT(cond, func) \ argument
88 #define CHECKER_DO_IF_NOT(cond, func) \ argument
95 #define CHECKER_DO_IF_NOT_VISITOR_INTERNAL(visitor, klass, cond, func) \ argument
103 #define CHECKER_DO_IF_NOT_AND_PRINT(cond, func) CHECKER_DO_IF_NOT((cond), func; PrintFailedMethodAn… argument
105 #define CHECKER_DO_IF_NOT_AND_PRINT_VISITOR(visitor, cond, func) \ argument
/arkcompiler/ets_runtime/test/moduletest/newobjdynrange/
Dnewobjdynrange.js35 function func() { function
36 func.prototype = "hello" class
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
Daarch64_cfgo.h25 …AArch64CFGOptimizer(CGFunc &func, MemPool &memPool, LoopAnalysis &loop) : CFGOptimizer(func, memPo… in AArch64CFGOptimizer()
32 explicit AArch64FlipBRPattern(CGFunc &func, LoopAnalysis &loop) : FlipBRPattern(func, loop) {} in AArch64FlipBRPattern()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/
Dx64_cfgo.h24 …X64CFGOptimizer(CGFunc &func, MemPool &memPool, LoopAnalysis &loop) : CFGOptimizer(func, memPool, … in X64CFGOptimizer()
31 explicit X64FlipBRPattern(CGFunc &func, LoopAnalysis &loop) : FlipBRPattern(func, loop) {} in X64FlipBRPattern()
/arkcompiler/ets_runtime/ecmascript/tests/
Dmachine_code_test.cpp51 JSHandle<JSFunction> func(thread->GetEcmaVM()->GetGlobalEnv()->GetArrayFunction()); in HWTEST_F_L0() local
66 JSHandle<JSFunction> func(thread->GetEcmaVM()->GetGlobalEnv()->GetArrayFunction()); in HWTEST_F_L0() local
87 JSHandle<JSFunction> func(thread->GetEcmaVM()->GetGlobalEnv()->GetArrayFunction()); in HWTEST_F_L0() local
116 JSHandle<JSFunction> func(thread->GetEcmaVM()->GetGlobalEnv()->GetArrayFunction()); in HWTEST_F_L0() local
145 JSHandle<JSFunction> func(thread->GetEcmaVM()->GetGlobalEnv()->GetArrayFunction()); in HWTEST_F_L0() local
171 JSHandle<JSFunction> func(thread->GetEcmaVM()->GetGlobalEnv()->GetArrayFunction()); in HWTEST_F_L0() local
197 JSHandle<JSFunction> func(thread->GetEcmaVM()->GetGlobalEnv()->GetArrayFunction()); in HWTEST_F_L0() local
/arkcompiler/runtime_core/libabckit/tests/ut/isa/isa_dynamic/dyn_call_this/
Dcall_this_dynamic.cpp101 …tic void TestHelper(void (*transformIrCall)(AbckitGraph *graph, AbckitInst *obj, AbckitInst *func), in TestHelper()
117 …auto func = g_dynG->iCreateLdobjbyname(graph, obj, g_implM->createString(file, "func", strlen("fun… in TestHelper() local
137 static void TransformIrCallThisarg0(AbckitGraph *graph, AbckitInst *obj, AbckitInst *func) in TransformIrCallThisarg0()
147 static void TransformIrCallThisarg1(AbckitGraph *graph, AbckitInst *obj, AbckitInst *func) in TransformIrCallThisarg1()
160 static void TransformIrCallThisargs2(AbckitGraph *graph, AbckitInst *obj, AbckitInst *func) in TransformIrCallThisargs2()
175 static void TransformIrCallThisargs3(AbckitGraph *graph, AbckitInst *obj, AbckitInst *func) in TransformIrCallThisargs3()
192 static void TransformIrCallThisrange(AbckitGraph *graph, AbckitInst *obj, AbckitInst *func) in TransformIrCallThisrange()
211 static void TransformIrWideCallThisrange(AbckitGraph *graph, AbckitInst *obj, AbckitInst *func) in TransformIrWideCallThisrange()
/arkcompiler/ets_runtime/compiler_service/test/unittest/aotcompilerproxy_unit/
Daotcompilerproxy_unit.cpp194 auto func = [](MessageParcel &data, MessageParcel &reply) -> int32_t { in __anon1258fdc70202() variable
214 auto func = [](MessageParcel &data, MessageParcel &reply) -> int32_t { in __anon1258fdc70302() variable
235 auto func = [](MessageParcel &data, MessageParcel &reply) -> int32_t { in __anon1258fdc70402() variable
266 auto func = [](MessageParcel &reply) -> int32_t { in __anon1258fdc70502() variable
283 auto func = [](MessageParcel &reply) -> int32_t { in __anon1258fdc70602() variable
315 auto func = [](MessageParcel &reply) -> int32_t { in __anon1258fdc70702() variable
334 auto func = [testData](MessageParcel &reply) -> int32_t { in __anon1258fdc70802() variable
372 auto func = [](MessageParcel &data, MessageParcel &reply) -> int32_t { in __anon1258fdc70902() variable
392 auto func = [testData](MessageParcel &data, MessageParcel &reply) -> int32_t { in __anon1258fdc70a02() variable
/arkcompiler/ets_frontend/ets2panda/ir/expressions/
DfunctionExpression.h32 …explicit FunctionExpression(ScriptFunction *const func) : Expression(AstNodeType::FUNCTION_EXPRESS… in FunctionExpression()
36 FunctionExpression(ir::Identifier *namedExpr, ScriptFunction *const func) in FunctionExpression()
/arkcompiler/runtime_core/static_core/compiler/tests/aarch64/
Dencoder64_test.h86 auto func = reinterpret_cast<FunctPtr>(ptr); in CallCode() local
130 auto func = reinterpret_cast<FunctPtr>(ptr); in CallCode() local
172 auto func = reinterpret_cast<FunctPtr>(ptr); in CallCode() local
210 auto func = reinterpret_cast<FunctPtr>(ptr); in CallCode() local
248 auto func = reinterpret_cast<FunctPtr>(ptr); in CallCodeStore() local
261 auto func = reinterpret_cast<FunctPtr>(ptr); in CallCodeCall() local
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter.cpp38 JSThread *thread, JSTaggedType func, JSTaggedType thisObj, JSTaggedType newTarget, in NewRuntimeCallInfoBase()
69 JSThread *thread, JSTaggedValue func, JSTaggedValue thisObj, JSTaggedValue newTarget, in NewRuntimeCallInfo()
77 JSThread *thread, JSHandle<JSTaggedValue> func, JSHandle<JSTaggedValue> thisObj, in NewRuntimeCallInfo()
87 JSTaggedValue func = info->GetFunctionValue(); in ReBuildRuntimeCallInfo() local
/arkcompiler/runtime_core/libabckit/tests/ut/isa/isa_dynamic/dyn_call/
Dcall_dynamic.cpp118 auto func = helpers::FindFirstInst(graph, ABCKIT_ISA_API_DYNAMIC_OPCODE_DEFINEFUNC); in TransformIrCallarg0() local
132 auto func = helpers::FindFirstInst(graph, ABCKIT_ISA_API_DYNAMIC_OPCODE_DEFINEFUNC); in TransformIrCallarg1() local
149 auto func = helpers::FindFirstInst(graph, ABCKIT_ISA_API_DYNAMIC_OPCODE_DEFINEFUNC); in TransformIrCallargs2() local
168 auto func = helpers::FindFirstInst(graph, ABCKIT_ISA_API_DYNAMIC_OPCODE_DEFINEFUNC); in TransformIrCallargs3() local
189 auto func = helpers::FindFirstInst(graph, ABCKIT_ISA_API_DYNAMIC_OPCODE_DEFINEFUNC); in TransformIrCallrange() local
212 auto func = helpers::FindFirstInst(graph, ABCKIT_ISA_API_DYNAMIC_OPCODE_DEFINEFUNC); in TransformIrWideCallrange() local
/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ts/
DfunctionCall_1.ts17 function func(a : number) : void { function
DfunctionCall_11.ts17 var func: { (a: number, b: string): number, (a: string, b?: number): string }; variable
DfunctionCall_15.ts17 var func: { (a: number, ...c): boolean, (a: any, b: string[], ...c: number[]): string, (a: number, … variable
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/expressions/
Dts-test-instantiation-expressions-5.ts16 function func<T>() { function
/arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/
DfunctionCall_4.ts17 function func(a: number) : number { function
DfunctionCall_8.ts17 function func(a?: number, ...c: string[]) { function
DfunctionCall_6.ts17 function func(...a: string) { function
DfunctionCall_11.ts17 var func: { (a: number, b: string): number, (a: string, b?: number): string }; variable
DfunctionCall_1.ts17 function func(a : number) : void { function
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest_instantiation_expressions7.ts17 function func<T>() {} function
Dtest-function-generic.ts17 function func<T> (a : T) { function
Dtest_export-function-overload.ts17 export function func(a: number, b: string, ...args: any[]): void; function

12345678910>>...20