| /arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/utils/ |
| D | test_core_typedarray_slicing.j2 | 88 //Check all the data copied; 148 //Check all the data copied; 172 //Check all the data copied; 217 //Check all the data copied; 242 //Check all the data copied; 265 //Check all the data copied; 288 //Check all the data copied; 311 //Check all the data copied; 380 //Check all the data copied;
|
| D | test_core_typeduarray_slicing.j2 | 93 //Check all the data copied; 160 //Check all the data copied; 184 //Check all the data copied; 238 //Check all the data copied; 263 //Check all the data copied; 286 //Check all the data copied; 309 //Check all the data copied; 332 //Check all the data copied; 410 //Check all the data copied;
|
| D | test_core_typedarray_function2.j2 | 111 //Check all the data copied; 171 //Check all the data copied; 195 //Check all the data copied; 264 //Check all the data copied; 289 //Check all the data copied; 312 //Check all the data copied; 335 //Check all the data copied; 358 //Check all the data copied; 427 //Check all the data copied;
|
| D | test_core_typeduarray_function2.j2 | 119 //Check all the data copied; 186 //Check all the data copied; 210 //Check all the data copied; 285 //Check all the data copied; 310 //Check all the data copied; 333 //Check all the data copied; 356 //Check all the data copied; 379 //Check all the data copied; 455 //Check all the data copied;
|
| /arkcompiler/runtime_core/static_core/compiler/tools/ |
| D | pbc_2_ir_doc_gen.sh | 15 # 1. If PBC2IR.md already exists, it is copied to PBC2IR_OLD.md. 18 # Another information isn't copied!
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/interop-cookbook/ |
| D | draft.txt | 36 …copied between VMs; For example, static array used as an argument of the imported TS function will…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/ |
| D | BuiltinArrayAlgorithms.ets | 138 * @param src source array to be copied 155 * @param src source array to be copied 163 * @param srcEnd last index of src to copy, exclusive, i.e. src[srcEnd] is not copied 304 * @param src source array to be copied 321 * @param src source array to be copied 329 * @param srcEnd last index of src to copy, exclusive, i.e. src[srcEnd] is not copied 470 * @param src source array to be copied 487 * @param src source array to be copied 495 * @param srcEnd last index of src to copy, exclusive, i.e. src[srcEnd] is not copied 636 * @param src source array to be copied [all …]
|
| /arkcompiler/toolchain/adapter/ |
| D | BUILD.gn | 33 # All dynamic libraries to be copied to the path "/bin/", 61 # All dynamic libraries to be copied to the path "/previewer/common/bin/",
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/gtest_plugin/ |
| D | ets_interop_js_gtest.cpp | 71 size_t copied = 0; in Main() local 72 … status = napi_get_value_string_utf8(env, jsArrayElement, utf8Str.data(), utf8Str.size(), &copied); in Main()
|
| D | ets_interop_js_gtest.h | 211 size_t copied; in GetString() local 212 status = napi_get_value_string_utf8(env, jsStr, v.data(), length + 1, &copied); in GetString() 214 ASSERT(length == copied); in GetString()
|
| /arkcompiler/ets_runtime/test/sharedtest/sharedtypedarray/ |
| D | expect_output.txt | 564 true, copied: [1,2,3,2,3,6,7,8] 566 true, copied: [1,2,3,2,3,6,7,8] 568 true, copied: [1,2,3,2,3,6,7,8] 570 true, copied: [1,2,3,2,3,6,7,8] 572 true, copied: [1,2,3,2,3,6,7,8] 574 true, copied: [1,2,3,2,3,6,7,8] 576 true, copied: [1,2,3,2,3,6,7,8] 578 true, copied: [1,2,3,2,3,6,7,8] 580 true, copied: [1,2,3,2,3,6,7,8]
|
| /arkcompiler/runtime_core/static_core/runtime/include/ |
| D | vtable_builder_base-inl.h | 169 CopiedMethod copied(info->GetMethod()); in AddDefaultInterfaceMethods() 170 copied.SetStatus(entry.GetStatus()); in AddDefaultInterfaceMethods() 171 orderedCopiedMethods_[entry.GetIndex()] = copied; in AddDefaultInterfaceMethods()
|
| D | class-inl.h | 282 case FindFilter::COPIED: in GetMethods() 311 // Copied methods come from implemented interfaces default methods and unsorted, in FindDirectMethod() 314 if constexpr (FILTER == FindFilter::COPIED) { in FindDirectMethod() 315 auto methods = GetMethods<FindFilter::COPIED>(); in FindDirectMethod() 340 return FindClassMethod<FindFilter::COPIED, KeyComp>(key, preds...); in FindClassMethod() 350 static_assert(FILTER != FindFilter::COPIED, "interfaces don't have copied methods"); in FindInterfaceMethod()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/native/core/ |
| D | IntlRelativeTimeFormat.cpp | 57 ani_size copied = 0; in CallOptionGetter() local 58 env->String_GetUTF8(resultStr, buf.data(), buf.size(), &copied); in CallOptionGetter() 132 ani_size copied = 0; in ToIcuLocale() local 133 env->String_GetUTF8(localeStr, buf.data(), buf.size(), &copied); in ToIcuLocale()
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | if_conversion_doc.md | 67 3. All instruction from `JBB` are copied to `BB` 71 …b. If `PBB` doesn't have other predecessors, all Phi inputs are copied to Select instructions and …
|
| D | escape_analysis.md | 26 …predecessing blocks. If there is only one block then its state is simply copied. Multiple predeces… 28 …lly there will be no state for the back edge. The loop header's state is copied from the pre-heade…
|
| /arkcompiler/runtime_core/static_core/runtime/coretypes/ |
| D | array.cpp | 59 // Order is matters here: GC can read data before it copied if we set length first. in Create() 118 // Order is matters here: GC can read data before it copied if we set length first. in CreateTagged()
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | barriers.h | 66 // dstAddr/srcAddr is the address will be copied to/from. 74 // dstAddr/srcAddr is the address will be copied to/from.
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/ |
| D | reg_alloc_resolver.h | 44 * SaveStateInst's inputs were split between these users then SaveStateInst should be copied in
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/ |
| D | reg_alloc_resolver.h | 49 * SaveStateInst's inputs were split between these users then SaveStateInst should be copied in
|
| /arkcompiler/runtime_core/static_core/runtime/mem/ |
| D | pygote_space_allocator.h | 38 STATE_PYGOTE_FORKING, // at first pygote fork, allocate for copied objects
|
| /arkcompiler/runtime_core/static_core/plugins/ets/templates/stdlib/ |
| D | Array_builtin_algorithms.ets.j2 | 250 * @param src source array to be copied 267 * @param src source array to be copied 275 * @param srcEnd last index of src to copy, exclusive, i.e. src[srcEnd] is not copied
|
| /arkcompiler/ets_frontend/ets2panda/bindings/test/ |
| D | prepare.ps1 | 101 Write-Host "Directory copied successfully from '$sourceDir' to '$destinationDir'."
|
| /arkcompiler/ets_runtime/tools/ap_file_viewer/ |
| D | build.py | 46 print(f'Copied {absolute_file_path} to {dist_dir}')
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/escompat/ |
| D | DeepCopyTest.ets | 150 assertTrue(objs[1] === null, "null element copied incorrectly") 151 assertTrue(objs[2] === undefined, "undefined element copied incorrectly")
|