/arkcompiler/ets_frontend/test/scripts/ |
H A D | entry.py | 35 job(['python', './utils/flash_image/burn_image.py']) 37 job(['python', './utils/commit_message/get_commit_message.py']) 51 def job(cmd): function 59 job(os.path.join(".", "auto_xts_test", "run.bat")) 60 job(f'python {os.path.join(".", "sdk_test", "entry.py")}') 61 job(f'python {os.path.join(".", "performance_test", "performance_entry.py")}') 62 job(f'python {os.path.join(".", "utils", "send_email", "send_email.py")}')
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_finalization_registry.cpp | 143 JSHandle<job::MicroJobQueue> &job, JSHandle<JSFunction> &func) in DealCallBackOfMap() 153 // if WeakRefTarget have been gc, set callback to job and delete in DealCallBackOfMap() 157 job::MicroJobQueue::EnqueueJob(thread, job, job::QueueType::QUEUE_PROMISE, func, argv); in DealCallBackOfMap() 176 JSHandle<job::MicroJobQueue> job = thread->GetCurrentEcmaContext()->GetMicroJobQueue(); in CleanupFinalizationRegistry() local 188 // if WeakRefTarget have been gc, set callback to job and delete in CleanupFinalizationRegistry() 192 job in CleanupFinalizationRegistry() 142 DealCallBackOfMap(JSThread *thread, JSHandle<CellRecordVector> &cellVect, JSHandle<job::MicroJobQueue> &job, JSHandle<JSFunction> &func) DealCallBackOfMap() argument [all...] |
H A D | js_promise.cpp | 161 JSHandle<job::MicroJobQueue> job = thread->GetCurrentEcmaContext()->GetMicroJobQueue(); in TriggerPromiseReactions() local 172 job::MicroJobQueue::EnqueueJob(thread, job, job::QueueType::QUEUE_PROMISE, promiseReactionsJob, arguments); in TriggerPromiseReactions()
|
/arkcompiler/runtime_core/static_core/verification/absint/ |
H A D | verification_context.h | 25 #include "verification/jobs/job.h" 41 VerificationContext(TypeSystem *typeSystem, Job const *job, Type methodClassType) in VerificationContext() argument 43 job_ {job}, 46 plugin_ {plugin::GetLanguagePlugin(job->JobMethod()->GetClass()->GetSourceLang())} 48 Method const *method = job->JobMethod();
|
H A D | absint.h | 31 VerificationContext PrepareVerificationContext(TypeSystem *typeSystem, Job const *job);
|
H A D | absint.cpp | 23 #include "verification/jobs/job.h" 59 VerificationContext PrepareVerificationContext(TypeSystem *typeSystem, Job const *job) in PrepareVerificationContext() argument 61 auto *method = job->JobMethod(); in PrepareVerificationContext() 67 VerificationContext verifCtx {typeSystem, job, methodClassType}; in PrepareVerificationContext()
|
/arkcompiler/ets_frontend/es2panda/util/ |
H A D | workerQueue.cpp | 20 void WorkerJob::DependsOn(WorkerJob *job) in DependsOn() argument 22 job->dependants_.push_back(this); in DependsOn() 83 auto &job = *(jobs_[jobsCount_]); in Consume() local 88 job.Run(); in Consume()
|
H A D | workerQueue.h | 36 void DependsOn(WorkerJob *job);
|
/arkcompiler/ets_runtime/ecmascript/jobs/ |
H A D | pending_job.h | 30 namespace panda::ecmascript::job { namespace in panda::ecmascript 45 JSHandle<JSTaggedValue> job(thread, pendingJob->GetJob()); in ExecutePendingJob() 46 ASSERT(job->IsCallable()); in ExecutePendingJob() 50 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, job, undefined, undefined, argsLength); in ExecutePendingJob() 76 } // namespace panda::ecmascript::job
|
H A D | hitrace_scope.h | 27 namespace panda::ecmascript::job { namespace in panda::ecmascript 34 EnqueueJobScope(const JSHandle<PendingJob> &pendingJob, job::QueueType queueType); 68 } // namespace panda::ecmascript::job
|
H A D | micro_job_queue.h | 25 namespace panda::ecmascript::job { namespace in panda::ecmascript 37 const JSHandle<JSFunction> &job, const JSHandle<TaggedArray> &argv); 48 } // namespace panda::ecmascript::job
|
H A D | micro_job_queue.cpp | 24 namespace panda::ecmascript::job { namespace in panda::ecmascript 33 const JSHandle<JSFunction> &job, const JSHandle<TaggedArray> &argv) in EnqueueJob() 36 // 2. Assert: job is the name of a Job. in EnqueueJob() 37 // 3. Assert: arguments is a List that has the same number of elements as the number of parameters required by job. in EnqueueJob() 42 JSHandle<PendingJob> pendingJob(factory->NewPendingJob(job, argv)); in EnqueueJob() 90 } // namespace panda::ecmascript::job 32 EnqueueJob(JSThread *thread, JSHandle<MicroJobQueue> jobQueue, QueueType queueType, const JSHandle<JSFunction> &job, const JSHandle<TaggedArray> &argv) EnqueueJob() argument
|
/arkcompiler/toolchain/build/misc/mac/ |
H A D | find_sdk.py | 57 job = subprocess.Popen(['xcode-select', '-print-path'], 60 out, err = job.communicate() 61 if job.returncode != 0: 64 raise Exception('Error %d running xcode-select' % job.returncode)
|
/arkcompiler/ets_frontend/ets2panda/compiler/core/ |
H A D | compileJob.cpp | 33 void CompileJob::DependsOn(CompileJob *job) in DependsOn() argument 35 job->dependant_ = this; in DependsOn()
|
H A D | compileQueue.cpp | 90 auto &job = jobs_[jobsCount_]; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Consume() local 95 job.Run(); in Consume()
|
H A D | compileJob.h | 61 void DependsOn(CompileJob *job);
|
/arkcompiler/ets_frontend/test/scripts/utils/flash_image/ |
H A D | burn_image.py | 31 def job(cmd): function 83 job('hdc shell reboot bootloader')
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_finalization_registry_test.cpp | 179 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0() 215 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0() 252 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0() 286 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0() 336 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0() 367 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0() 395 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0()
|
H A D | builtins_promise_test.cpp | 376 job::MicroJobQueue::ExecutePendingJob(thread, microJobQueue); in HWTEST_F_L0() 446 job::MicroJobQueue::ExecutePendingJob(thread, microJobQueue); in HWTEST_F_L0() 493 job::MicroJobQueue::ExecutePendingJob(thread, microJobQueue); in HWTEST_F_L0() 535 job::MicroJobQueue::ExecutePendingJob(thread, microJobQueue); in HWTEST_F_L0() 575 job::MicroJobQueue::ExecutePendingJob(thread, microJobQueue); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/scripts/code_style/ |
H A D | code_style_check.py | 98 for job in jobs: 99 if not job.get():
|
H A D | doxygen_style_check.py | 243 for job in jobs: 244 if not job:
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_finalization_registry_test.cpp | 185 job::MicroJobQueue::ExecutePendingJob(thread, thread->GetCurrentEcmaContext()->GetMicroJobQueue()); in RegisterUnRegisterTestCommon() 221 job::MicroJobQueue::ExecutePendingJob(thread, thread->GetCurrentEcmaContext()->GetMicroJobQueue()); in RegisterUnRegisterTestCommonTwoTarget() 290 job::MicroJobQueue::ExecutePendingJob(thread, thread->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0() 336 job::MicroJobQueue::ExecutePendingJob(thread, thread->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/verification/ |
H A D | public.cpp | 23 #include "verification/jobs/job.h" 212 Job job {service, method, verifMethodOptions}; in Verify() 213 bool result = job.DoChecks(processor->GetTypeSystem()); in Verify()
|
/arkcompiler/ets_runtime/ecmascript/jobs/tests/ |
H A D | micro_job_queue_test.cpp | 28 using MicroJobQueue = ecmascript::job::MicroJobQueue; 29 using PendingJob = ecmascript::job::PendingJob; 30 using QueueType = job::QueueType; 94 * function to enter the "function" and TaggedArray object into the promise job queueof the MicroJobQueue,then 130 * function to enter the "function" and TaggedArray object into the script job queue of the MicroJobQueue,then 177 * value and enter "function" and TaggedArray object into the promise job queue.Calling "ExecutePendingJob" 219 * value and enter the "function" and TaggedArray object into the script job queue and promise job queue.
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_promise_handler.cpp | 93 JSHandle<job::MicroJobQueue> job = thread->GetCurrentEcmaContext()->GetMicroJobQueue(); in Resolve() local 94 job::MicroJobQueue::EnqueueJob(thread, job, job::QueueType::QUEUE_PROMISE, promiseResolveThenableJob, arguments); in Resolve()
|