Home
last modified time | relevance | path

Searched full:full (Results 1 – 25 of 261) sorted by relevance

1234567891011

/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/
Dgenerate.py35 SrcPath = namedtuple("SrcPath", "full rel")
41 self.args = args # need to keeep full cmdline for measure overrides
64 full = p.resolve()
66 SrcPath(full, full.parent.relative_to(root)))
84 Returns flat list of (Full, Relative) paths
116 libpath = src.full.parent.joinpath(m[0])
125 def check_common_files(full: Path, lang_name: str) -> str:
131 if full.parent.name != lang_name:
133 common = full.parent.parent.joinpath('common', lang_name)
135 full.parent.parent.parent.joinpath('common', lang_name)
[all …]
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/
DCMakeLists.txt31 set(FULL "${PROJECT_BINARY_DIR}/full.yaml") variable
32 set(FULL_MD "${PROJECT_BINARY_DIR}/full.md")
34 set(OUTPUT_FILES ${UNCOVERED} ${UNCOVERED_MD} ${ORPHANED} ${ORPHANED_MD} ${FULL} ${FULL_MD} ${REPOR…
41 … ${UNCOVERED_MD} --orphaned ${ORPHANED} --orphaned_md ${ORPHANED_MD} --full ${FULL} --full_md ${FU…
DREADME.md25 --full (-f) - output the full spec in yaml format with additional fields showing the coverage data …
26 --full_md (-F) - same as --full, but in markdown format
41 -f full.yaml \
/arkcompiler/runtime_core/tests/cts-coverage-tool/
DCMakeLists.txt31 set(FULL "${PROJECT_BINARY_DIR}/full.yaml") variable
32 set(FULL_MD "${PROJECT_BINARY_DIR}/full.md")
34 set(OUTPUT_FILES ${UNCOVERED} ${UNCOVERED_MD} ${ORPHANED} ${ORPHANED_MD} ${FULL} ${FULL_MD} ${REPOR…
41 … ${UNCOVERED_MD} --orphaned ${ORPHANED} --orphaned_md ${ORPHANED_MD} --full ${FULL} --full_md ${FU…
DREADME.md25 --full (-f) - output the full spec in yaml format with additional fields showing the coverage data …
26 --full_md (-F) - same as --full, but in markdown format
41 -f full.yaml \
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/gc/stress/
Dtest_gc_old.sts139 let full : int = (n / TestGCOld.treeSize) as int;
142 for (let i : int = 0; i < full; i++) {
191 private static doReplaceTreeWork(full : TreeNode, partial : TreeNode, dir : boolean) : void {
192 let canGoLeft : boolean = full.left != null && full.left!.value > partial.value;
193 let canGoRight : boolean = full.right != null && full.right!.value > partial.value;
196 TestGCOld.doReplaceTreeWork(full.left!, partial, !dir);
198 TestGCOld.doReplaceTreeWork(full.right!, partial, !dir);
201 full.left = partial;
203 full.right = partial;
205 full.left = partial;
[all …]
/arkcompiler/runtime_core/libpandabase/tests/
Dring_buffer_test.cpp33 ASSERT_FALSE(buffer.full()); in TEST()
50 ASSERT_TRUE(buffer.full()); in TEST()
57 // Add new element when buffer is full in TEST()
66 ASSERT_TRUE(buffer.full()); in TEST()
84 ASSERT_FALSE(buffer.full()); in TEST()
99 ASSERT_TRUE(buffer.full()); in TEST()
110 ASSERT_FALSE(buffer.full()); in TEST()
119 ASSERT_FALSE(buffer.full()); in TEST()
131 ASSERT_FALSE(buffer.full()); in TEST()
/arkcompiler/runtime_core/static_core/libpandabase/tests/
Dring_buffer_test.cpp33 ASSERT_FALSE(BUFFER.full()); in TEST()
50 ASSERT_TRUE(buffer.full()); in TEST()
57 // Add new element when buffer is full in TEST()
66 ASSERT_TRUE(buffer.full()); in TEST()
84 ASSERT_FALSE(buffer.full()); in TEST()
99 ASSERT_TRUE(buffer.full()); in TEST()
110 ASSERT_FALSE(buffer.full()); in TEST()
119 ASSERT_FALSE(buffer.full()); in TEST()
131 ASSERT_FALSE(buffer.full()); in TEST()
/arkcompiler/ets_frontend/test/scripts/performance_test/
Dperformance_config.py149 FULL = 0 variable in LogType
173 LogType.FULL: os.path.join(mail_data_path, 'debug_full_time.csv'),
178 LogType.FULL: os.path.join(mail_data_path, 'release_full_time.csv'),
186 LogType.FULL:os.path.join(mail_data_path, 'debug_full_time.jpg'),
191 LogType.FULL: os.path.join(mail_data_path, 'release_full_time.jpg'),
199 LogType.FULL: 'Debug Full Build',
201 LogType.SIZE: 'Debug Full Build size'
204 LogType.FULL: 'Release Full Build',
206 LogType.SIZE: 'Release Full Build size'
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/
Dfull_md.rb23 attr_accessor :full, :properties_hash, :exceptions_hash, :verification_hash accessor in FullMd
27 @full = spec
28 @exceptions_hash = convert_to_hash(@full['exceptions'])
29 @properties_hash = convert_to_hash(@full['properties'])
30 @verification_hash = convert_to_hash(@full['verification'])
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/
Dfull_md.rb23 attr_accessor :full, :properties_hash, :exceptions_hash, :verification_hash accessor in FullMd
27 @full = spec
28 @exceptions_hash = convert_to_hash(@full['exceptions'])
29 @properties_hash = convert_to_hash(@full['properties'])
30 @verification_hash = convert_to_hash(@full['verification'])
/arkcompiler/runtime_core/static_core/irtoc/backend/
Doptions.yaml33 - full
38 full - reports only skipped by LLVM or compiled by Ark compilation units, and
39 typed - same as full but without dynamic methods
/arkcompiler/runtime_core/static_core/cmake/third_party/typescript/
DCMakeLists.txt45 ${TYPESCRIPT_ROOT}/lib/lib.es2016.full.d.ts
47 ${TYPESCRIPT_ROOT}/lib/lib.es2017.full.d.ts
56 ${TYPESCRIPT_ROOT}/lib/lib.es2018.full.d.ts
62 ${TYPESCRIPT_ROOT}/lib/lib.es2019.full.d.ts
70 ${TYPESCRIPT_ROOT}/lib/lib.es2020.full.d.ts
78 ${TYPESCRIPT_ROOT}/lib/lib.es2021.full.d.ts
86 ${TYPESCRIPT_ROOT}/lib/lib.es2022.full.d.ts
94 ${TYPESCRIPT_ROOT}/lib/lib.esnext.full.d.ts
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/gc/
Dweak_ref_test.sts37 // Run Full GC for referent collection
44 assert wr.deref() === undefined : "Object referent must be collected after Full GC";
45 assert wrs.deref() === undefined : "String referent must be collected after Full GC";
/arkcompiler/ets_runtime/test/aottest/dynamicimport/
Dexpect_output.txt14 full name : Tywin Lannister
16 full name : Tyrion undefined
Ddynamicimport.js29 print('full name : ', animalA.name, ' ', animalA.cognomen);
35 print('full name : ', animalB.name, ' ', animalB.cognomen);
/arkcompiler/ets_runtime/test/moduletest/dynamicimport/
Dexpect_output.txt14 full name : Tywin
16 full name : Tyrion
/arkcompiler/runtime_core/static_core/docs/diagrams/
Dgc-thread-activity.plantuml25 if (task is Full GC) then (yes)
26 :Run Full GC;
/arkcompiler/runtime_core/docs/diagrams/
Dgc-thread-activity.puactivity25 if (task is Full GC) then (yes)
26 :Run Full GC;
/arkcompiler/runtime_core/static_core/runtime/include/
Dgc_task.h34 YOUNG_GC_CAUSE, // if young space is full
41 OOM_CAUSE, // if all heap is full
49 enum class GCCollectionType : uint8_t { NONE = 0, YOUNG, MIXED, TENURED, FULL }; enumerator
/arkcompiler/ets_runtime/test/aotjsperftest/
DREADME_en.md11 - The environment requires downloading the full OpenHarmony code repository or standalone code repo…
13 #full OpenHarmony code repository
65 #example full OpenHarmony code repository
/arkcompiler/runtime_core/static_core/runtime/arch/
Dmemory_helpers.h34 // Forces system-wide full memory synchronization
43 // Actually only full memory barrier guarantees StoreLoad order but separate implementation is used…
/arkcompiler/runtime_core/static_core/cmake/
DClangTidy.cmake28 add_custom_target(clang-tidy-check-full
29 …COMMAND ${PANDA_ROOT}/scripts/clang-tidy/clang_tidy_check.py --full ${PANDA_ROOT} ${PANDA_BINARY_R…
/arkcompiler/runtime_core/static_core/runtime/coretypes/
Darray.cpp64 …// Witout full memory barrier it is possible that architectures with weak memory order can try fet… in Create()
82 …// Without full memory barrier it is possible that architectures with weak memory order can try fe… in Create()
101 …// Witout full memory barrier it is possible that architectures with weak memory order can try fet… in Create()
124 …// Witout full memory barrier it is possible that architectures with weak memory order can try fet… in CreateTagged()
/arkcompiler/runtime_core/static_core/compiler/docs/
Dpaoc.md12 …zing` or `--compiler-cross-arch`. Run `paoc` without any arguments to see full list of available o…
58 - Path to a file which contains full names of methods to compile.
82 # Keys are functions' full names (i.e. `class::method`).

1234567891011