| /arkcompiler/ets_runtime/tools/ap_file_viewer/src/base-ui/progress-bar/ |
| D | ProgressBar.js | 17 return ['loading']; 25 get loading() { getter in ProgressBar 26 return this.hasAttribute('loading'); 29 set loading(value) { setter in ProgressBar 31 this.setAttribute('loading', ''); 33 this.removeAttribute('loading'); 52 :host([loading]) .track1{ 61 :host([loading]) .track2{
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/runtime/ |
| D | 05_imports.rst | 108 .. _Handling Binaries And Loading Classes: 110 Handling Binaries And Loading Classes 116 - Internal runtime loading APIs work **only** with binary executable files 139 |LANG| runtime determines the load context with custom class loading policies: 142 into the context is a custom class loading policy. 217 language APIs: reflection, class loading, dynamic import 252 Loading contexts for executable binary files form a tree structure, and the 259 This approach isolates separate loading contexts, allowing to load different 268 .. _Runtime Loading Limitations: 270 Runtime Loading Limitations [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/src/pages/disasmView/ |
| D | DisasmCode.test.tsx | 66 it('applies correct run loading', () => { 75 expect(screen.getByTestId('editor').textContent).toContain('Loading...'); 77 it('applies correct compile loading', () => { 86 expect(screen.getByTestId('editor').textContent).toContain('Loading...');
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/src/store/actions/ |
| D | appState.test.ts | 35 it('should handle options loading state change', () => { 41 it('should handle syntax loading state change', () => {
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/mem/ |
| D | items_pool.h | 75 …// Atomic with relaxed order reason: data race with size loading with no synchronization or orderi… in ItemsPool() 85 …// Atomic with relaxed order reason: data race with size loading with no synchronization or orderi… in AllocItem() 98 …// Atomic with relaxed order reason: data race with size loading with no synchronization or orderi… in AllocItem() 111 …// Atomic with relaxed order reason: data race with size loading with no synchronization or orderi… in FreeItem()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/19.union_types/ |
| D | union_type_narrowing_attribute.params.yaml | 116 type GameState = "loading" | "playing" | "paused" | "gameover"; 120 case "loading": 137 let state: GameState = "loading";
|
| D | union_type_assignment.params.yaml | 363 type Status = "success" | "error" | "loading"; 400 type State = 'idle' | 'loading' | 'success' | 'error'; 409 if (event === 'start') this.state = 'loading'; 411 case 'loading': 423 assertEQ(sm.transition('start'), "loading"); 776 type State = 'idle' | 'loading' | 'success' | 'error'; 780 private state: State = 'loading'; 785 if (event === 'start') this.state = 'loading'; 787 case 'loading': 803 type State = 'idle' | 'loading' | 'success' | 'error'; [all …]
|
| /arkcompiler/ets_runtime/tools/ap_file_viewer/src/ap/ |
| D | ApApplication.js | 96 this.progressEL.loading = false; 134 this.progressEL.loading = false; 141 this.progressEL.loading = false; 147 this.progressEL.loading = false; 202 this.progressEL.loading = true;
|
| /arkcompiler/runtime_core/docs/changelogs/ |
| D | 2024-03-20-isa-changelog.md | 12 To support lazy loading of module variables in sendable class, the following bytecode instructions …
|
| D | 2024-07-10-isa-changelog.md | 12 …arkts-lazy-import.md), the following bytecode instructions are added for loading module variables …
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/ |
| D | AbcFile.ets | 38 * @throws errors happened on loading ABC file. 51 * @throws errors happened on loading ABC file.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/src/store/selectors/ |
| D | code.test.ts | 28 it('should select the compile loading state from code', () => { 34 it('should select the run loading state from code', () => {
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
| D | ets_class_linker_context.cpp | 87 // Report errors occurred during class loading. in LoadFromBootContext() 102 // No need to load by managed code, even if error occurred during loading. in TryLoadingClassInChain() 127 // No need to load by managed code, even if error occurred during loading. in TryLoadingClassInChain() 178 // Try loading the class without invoking managed code. in LoadClass() 263 // Report errors occurred during class loading in TryLoadingClassFromNative()
|
| D | ets_namespace_manager_impl.cpp | 44 << " loading library name :" << name; in LoadNativeLibraryFromNs() 73 … : "Error loading path " + std::string(name) + "in namespace" + in LoadNativeLibraryFromNs()
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | runtime_controller.cpp | 71 return true; // Allow loading panda file. in CanLoadPandaFile() 76 LOG(WARNING, RUNTIME) << "Disallow loading panda file in data directory : " << path; in CanLoadPandaFile()
|
| /arkcompiler/ets_runtime/test/moduletest/require/ |
| D | index.js | 22 var output = "index loading...";
|
| D | require.js | 29 assert_equal(strIndex, '{"index":"index loading..."}');
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/src/components/controlPanel/ |
| D | ControlPanel.test.tsx | 77 it('disables Compile button when compile is loading', () => { 89 it('disables Run button when run is loading', () => {
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-common-tests/atomics/ |
| D | index_range.ets | 27 // Correct atomic loading after non-atomic store
|
| /arkcompiler/ets_runtime/test/moduletest/deregistermodule/ |
| D | deregistermodule.js | 29 f(1).then(()=>{ // test for esm functioned well when second loading.
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | tracing.md | 14 trace::ScopedTrace scoped_trace("Loading file");
|
| /arkcompiler/runtime_core/docs/ |
| D | tracing.md | 14 trace::ScopedTrace scoped_trace("Loading file");
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/resources/hap/ |
| D | EmptyAbility.ts | 31 hilog.info(0, 'VMB', 'ERROR LOADING PAGE: %{public}s',
|
| /arkcompiler/runtime_core/static_core/runtime/include/tooling/ |
| D | debug_inf.h | 35 // when loading new panda file, add new entry to list
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/runner/sts_utils/ |
| D | test_parameters.py | 18 # This file provides functions thar are responsible for loading test parameters
|