/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | ipromise3.ts | 22 …(value: T) => IPromise3<U>, error?: (error: any) => IPromise3<U>, progress?: (progress: any) => vo… 23 …then<U>(success?: (value: T) => IPromise3<U>, error?: (error: any) => U, progress?: (progress: any… 24 …then<U>(success?: (value: T) => U, error?: (error: any) => IPromise3<U>, progress?: (progress: any… 25 …then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void )… 26 …done? <U>(success?: (value: T) => any, error?: (error: any) => any, progress?: (progress: any) => …
|
D | ipromise2.ts | 23 …: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (progress: any) => vo… 24 …>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => vo… 25 …>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any) => vo… 26 …then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void )… 27 …done<U>(success?: (value: T) => any, error?: (error: any) => any, progress?: (progress: any) => vo…
|
D | asyncFunctionsAndStrictNullChecks.ts | 23 …ue: TResult) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (progress: any) => vo… 24 …ess?: (value: TResult) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => vo… 25 …ess?: (value: TResult) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any) => vo… 26 …then<U>(success?: (value: TResult) => U, error?: (error: any) => U, progress?: (progress: any) => … 27 …>(success?: (value: TResult) => any, error?: (error: any) => any, progress?: (progress: any) => vo…
|
D | ipromise4.ts | 23 …: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (progress: any) => vo… 24 …>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => vo… 25 …>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any) => vo… 26 …then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void )… 27 …done? <U>(success?: (value: T) => any, error?: (error: any) => any, progress?: (progress: any) => …
|
D | exportedInterfaceInaccessibleInCallbackInModule.ts | 23 (progress:any):any; 29 …constructor(init:(complete: (value:V)=>void, error:(err:any)=>void, progress:ProgressCallback)=>vo… 32 …public then<U>(success?: (value:V)=>TPromise<U>, error?: (err:any)=>TPromise<U>, progress?:Progres…
|
D | arrayTypeInSignatureOfInterfaceAndClass.ts | 24 …s?: (value: T) => Promise<U>, error?: (error: any) => Promise<U>, progress?: (progress: any) => vo…
|
/arkcompiler/toolchain/build/prebuilts_download/ |
D | prebuilts_download.py | 29 from rich.progress import ( 40 progress = Progress( variable 96 progress.console.log('Requesting {}'.format(url)) 100 progress.console.log("Failed to open {}, HTTPError: {}".format(url, e.code), style='red') 101 progress.update(task_id, total=int(response.info()["Content-length"])) 103 progress.start_task(task_id) 106 progress.update(task_id, advance=len(data)) 107 progress.console.log("Downloaded {}".format(local_file)) 110 progress.console.log("Decompressing {}".format(local_file)) 112 progress.console.log("Decompressed {}".format(local_file)) [all …]
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
D | heap_profiler.cpp | 135 bool HeapProfiler::DumpHeapSnapshot(DumpFormat dumpFormat, Stream *stream, Progress *progress, in DumpHeapSnapshot() argument 144 if (progress != nullptr) { in DumpHeapSnapshot() 145 progress->ReportProgress(0, heapCount); in DumpHeapSnapshot() 151 if (progress != nullptr) { in DumpHeapSnapshot() 152 progress->ReportProgress(heapCount, heapCount); in DumpHeapSnapshot() 202 bool HeapProfiler::StopHeapTracking(Stream *stream, Progress *progress, bool newThread) in StopHeapTracking() argument 219 if (progress != nullptr) { in StopHeapTracking() 220 progress->ReportProgress(0, heapCount); in StopHeapTracking() 224 if (progress != nullptr) { in StopHeapTracking() 225 progress->ReportProgress(heapCount, heapCount); in StopHeapTracking()
|
D | heap_profiler_interface.h | 43 … virtual bool DumpHeapSnapshot(DumpFormat dumpFormat, Stream *stream, Progress *progress = nullptr, 49 …virtual bool StopHeapTracking(Stream *stream, Progress *progress = nullptr, bool newThread = true)…
|
D | heap_profiler.h | 78 bool DumpHeapSnapshot(DumpFormat dumpFormat, Stream *stream, Progress *progress = nullptr, 85 …bool StopHeapTracking(Stream *stream, Progress *progress = nullptr, bool newThread = true) overrid…
|
/arkcompiler/ets_frontend/es2panda/test/ |
D | BUILD.gn | 23 "--no-progress", 39 "--no-progress", 74 "--no-progress", 92 "--no-progress", 108 "--no-progress", 122 "--no-progress", 157 "--no-progress",
|
D | runner.py | 477 if self.args.progress: 629 args.progress)
|
D | test262skiplist.txt | 5476 built-ins/ArrayIteratorPrototype/next/detach-typedarray-in-progress.js
|
/arkcompiler/ets_runtime/test/fuzztest/dumpheapsnapshot3_fuzzer/ |
D | dumpheapsnapshot3_fuzzer.cpp | 51 Progress *progress = nullptr; in DumpHeapSnapshot3FuzzTest() local 52 …DFXJSNApi::DumpHeapSnapshot(vm, input, &stream, progress, isVmMode, isPrivate, captureNumericValue… in DumpHeapSnapshot3FuzzTest()
|
/arkcompiler/ets_frontend/es2panda/ |
D | README.md | 37 - `--no-progress`: Don't show progress bar
|
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
D | dfx_jsnapi.h | 55 …id DumpHeapSnapshot(const EcmaVM *vm, int dumpFormat, Stream *stream, Progress *progress = nullptr, 67 …static bool StopHeapTracking(const EcmaVM *vm, Stream *stream, Progress *progress = nullptr, bool …
|
/arkcompiler/toolchain/tooling/agent/ |
D | heapprofiler_impl.cpp | 360 HeapProfilerProgress progress(&frontend_); in StopTrackingHeapObjects() local 361 result = panda::DFXJSNApi::StopHeapTracking(vm_, &stream_, &progress, false); in StopTrackingHeapObjects() 376 HeapProfilerProgress progress(&frontend_); in TakeHeapSnapshot() local 377 … panda::DFXJSNApi::DumpHeapSnapshot(vm_, 0, &stream_, &progress, true, false, captureNumericValue); in TakeHeapSnapshot()
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
D | dfx_jsnapi.cpp | 66 … [[maybe_unused]] Stream *stream, [[maybe_unused]] Progress *progress, in DumpHeapSnapshot() argument 74 heapProfile->DumpHeapSnapshot(ecmascript::DumpFormat(dumpFormat), stream, progress, in DumpHeapSnapshot() 206 … [[maybe_unused]] Progress *progress, [[maybe_unused]] bool newThread) in StopHeapTracking() argument 213 result = heapProfile->StopHeapTracking(stream, progress, newThread); in StopHeapTracking()
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
D | dfx_jsnapi_tests.cpp | 115 ecmascript::Progress *progress = nullptr; in HWTEST_F_L0() local 122 …DFXJSNApi::DumpHeapSnapshot(vm_, dumpFormat, &stream, progress, isVmMode, isPrivate, captureNumeri… in HWTEST_F_L0()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
D | cocos_worker_test.js | 23480 this.progress = null; 23491 this.progress = t.progress; 23522 this.progress = null; 37737 if (!t.progress) { 37738 t.progress = { 37745 const {options: s, progress: n} = t; 37786 progress: n, property 38038 if (!t.progress) { 38039 t.progress = { 38046 const {options: s, progress: n} = t; [all …]
|
/arkcompiler/runtime_core/docs/ |
D | doxygen.config | 719 # Configuration options related to warning and progress messages
|
/arkcompiler/ets_frontend/legacy_bin/api8/src/ |
D | index.js | 2 …)},t.stopTracing=function(){e.Debug.assert(e.tracing,"Tracing is not in progress"),e.Debug.assert(…
|