Home
last modified time | relevance | path

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

12345678910>>...12

/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/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/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/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/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/plugins/ets/tests/ets_test_suite/gc/stress/
Dtest_gc_old_longrun.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 …]
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/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/ets_frontend/ets2panda/linter/scripts/
Dbundle-ts-lib-declarations.mjs34 'lib.es2016.full.d.ts',
42 'lib.es2017.full.d.ts',
47 'lib.es2018.full.d.ts',
55 'lib.es2019.full.d.ts',
64 'lib.es2020.full.d.ts',
72 'lib.es2021.full.d.ts',
78 'lib.es2022.full.d.ts',
88 'lib.esnext.full.d.ts',
/arkcompiler/ets_frontend/test/scripts/performance_test/
Dperformance_config.py160 FULL = 0 variable in LogType
186 LogType.FULL: os.path.join(mail_data_path, 'debug_full_time.csv'),
192 LogType.FULL: os.path.join(mail_data_path, 'release_full_time.csv'),
201 LogType.FULL: os.path.join(mail_data_path, 'debug_full_time.jpg'),
207 LogType.FULL: os.path.join(mail_data_path, 'release_full_time.jpg'),
216 LogType.FULL: 'Debug Full Build',
219 LogType.SIZE: 'Debug Full Build size'
222 LogType.FULL: 'Release Full Build',
225 LogType.SIZE: 'Release Full Build size'
/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/plugins/ets/tests/ets_test_suite/gc/
Dweak_ref_test.sts35 // Run Full GC for referent collection
42 assert wr.deref() === undefined : "Object referent must be collected after Full GC";
43 assert wrs.deref() === undefined : "String referent must be collected after Full GC";
/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/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.txt16 full name : Tywin
18 full name : Tyrion
/arkcompiler/ets_runtime/ecmascript/mem/
Didle_gc_trigger.h57 return "full gc"; in GetGCTypeName()
63 return "shared full gc"; in GetGCTypeName()
67 return "local concurrent full mark"; in GetGCTypeName()
135 … LOG_GC(DEBUG) << "IdleGCTrigger: check full GC heapAliveSizeAfterGC:" << heapAliveSizeAfterGC in CheckIdleOrHintFullGC()
148 LOG_GC(DEBUG) << "IdleGCTrigger: check full GC fragmentSizeAfterGC:" << fragmentSizeAfterGC in CheckIdleOrHintFullGC()
/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
50 enum class GCCollectionType : uint8_t { NONE = 0, YOUNG, MIXED, TENURED, FULL }; enumerator
/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/arch/
Dmemory_helpers.h34 // Forces system-wide full memory synchronization
43 // Actually only full memory barrier guarantees StoreLoad order but separate implementation is used…

12345678910>>...12