/arkcompiler/ets_runtime/test/moduletest/stubbuilder/ |
H A D | stubbuilder.js | 30 var fun = function(parameter) { 34 var call = fun(100); 46 var fun = function(pmt1, pmt2, pmt3, pmt4, pmt5, pmt6, pmt7, pmt8, pmt9, pmt10) { 51 var call = fun(1, 2, 3, 4, 5, 6, 7, 8, 9, 10); 61 var fun = function() { 65 var iter = fun(); 75 var fun = function() { 82 var iter = fun(); 94 var fun = function() { 98 var iter = fun(); [all...] |
/arkcompiler/toolchain/test/fuzztest/wsserver/wsserversendreply_fuzzer/ |
H A D | wsserversendreply_fuzzer.cpp | 36 std::function<void(std::string&&)> fun = TestFun; in WsServerSendReplyFuzzTest() local 41 WsServer wsServer(debugInfo, fun); in WsServerSendReplyFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/connectserver_fuzzer/ |
H A D | connectserver_fuzzer.cpp | 36 std::function<void(std::string&&)> fun = TestFun; in ConnectServerFuzzTest() local 37 ConnectServer connectServer("com.example.myapplication", fun); in ConnectServerFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/wsserver/wsservernotifydisconnectevent_fuzzer/ |
H A D | wsservernotifydisconnectevent_fuzzer.cpp | 36 std::function<void(std::string&&)> fun = TestFun; in WsServerNotifyDisconnectEventFuzzTest() local 41 WsServer wsServer(debugInfo, fun); in WsServerNotifyDisconnectEventFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/wsserver/wsserver_fuzzer/ |
H A D | wsserver_fuzzer.cpp | 36 std::function<void(std::string&&)> fun = TestFun; in WsServerFuzzTest() local 41 WsServer wsServer(debugInfo, fun); in WsServerFuzzTest()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/ |
H A D | hot_cards.h | 92 void VisitHotCards(F fun) in VisitHotCards() argument 94 std::for_each(hotCards_.begin(), hotCards_.end(), std::move(fun)); in VisitHotCards()
|
/arkcompiler/ets_runtime/test/moduletest/moduleLazyImport/ |
H A D | C_Cjs.js | 23 module.exports.fun = function foo5 () {
|
/arkcompiler/ets_runtime/test/moduletest/moduleUseCjs/ |
H A D | someArgsCjs.js | 24 module.exports.fun = function foo1 () {
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
H A D | mir_builder.h | 59 virtual void SetCurrentFunction(MIRFunction &fun) in SetCurrentFunction() argument 61 mirModule->SetCurFunction(&fun); in SetCurrentFunction() 120 MIRSymbol *GetFunctionArgument(MIRFunction &fun, uint32 index) const in GetFunctionArgument() argument 122 CHECK(index < fun.GetFormalCount(), "index out of range in GetFunctionArgument"); in GetFunctionArgument() 123 return fun.GetFormal(index); in GetFunctionArgument()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/napi_impl/ |
H A D | napi_impl.cpp | 48 napi_add_env_cleanup_hook([[maybe_unused]] napi_env env, [[maybe_unused]] void (*fun)(void *arg), in napi_add_env_cleanup_hook()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_function.cpp | 128 JSHClass *JSFunction::GetOrCreateInitialJSHClass(JSThread *thread, const JSHandle<JSFunction> &fun) in GetOrCreateInitialJSHClass() argument 130 JSTaggedValue protoOrHClass(fun->GetProtoOrHClass()); in GetOrCreateInitialJSHClass() 137 if (!fun->HasFunctionPrototype()) { in GetOrCreateInitialJSHClass() 138 proto = JSHandle<JSTaggedValue>::Cast(NewJSFunctionPrototype(thread, fun)); in GetOrCreateInitialJSHClass() 140 thread->GetEcmaVM()->GetPGOProfiler()->ProfileClassRootHClass(fun.GetTaggedType(), in GetOrCreateInitialJSHClass() 144 proto = JSHandle<JSTaggedValue>(thread, fun->GetProtoOrHClass()); in GetOrCreateInitialJSHClass() 150 fun->SetProtoOrHClass(thread, hclass); in GetOrCreateInitialJSHClass() 153 thread->GetEcmaVM()->GetPGOProfiler()->ProfileClassRootHClass(fun.GetTaggedType(), hclass.GetTaggedType()); in GetOrCreateInitialJSHClass() 155 thread->GetEcmaVM()->GetPGOProfiler()->ProfileProtoTransitionClass(fun, hclass, proto); in GetOrCreateInitialJSHClass() 211 void JSFunction::SetFunctionPrototypeOrInstanceHClass(const JSThread *thread, const JSHandle<JSFunction> &fun, in SetFunctionPrototypeOrInstanceHClass() argument [all...] |
H A D | js_function.h | 212 static void SetFunctionPrototypeOrInstanceHClass(const JSThread *thread, const JSHandle<JSFunction> &fun, 346 static JSHClass *PUBLIC_API GetOrCreateInitialJSHClass(JSThread *thread, const JSHandle<JSFunction> &fun);
|
/arkcompiler/ets_runtime/ecmascript/deoptimizer/ |
H A D | deoptimizer.h | 177 void ClearCompiledCodeStatusWhenDeopt(JSFunction *fun, Method *method);
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | jsnapi_expo.cpp | 5651 JSHandle<JSFunction> fun = JSHandle<JSFunction>::Cast(JSNApiHelper::ToJSHandle(cb)); in SetHostEnqueueJob() local 5654 MicroJobQueue::EnqueueJob(thread, job, queueType, fun, array); in SetHostEnqueueJob()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | 4589 this.fun = t; 4593 this.fun.apply(null, this.array); [all...] |