Home
last modified time | relevance | path

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

123

/arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/utils/
Dtest_core_typedarray_slicing.j288 //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;
Dtest_core_typeduarray_slicing.j293 //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;
Dtest_core_typedarray_function2.j2108 //Check all the data copied;
168 //Check all the data copied;
192 //Check all the data copied;
261 //Check all the data copied;
286 //Check all the data copied;
309 //Check all the data copied;
332 //Check all the data copied;
355 //Check all the data copied;
424 //Check all the data copied;
Dtest_core_typeduarray_function2.j2114 //Check all the data copied;
181 //Check all the data copied;
205 //Check all the data copied;
280 //Check all the data copied;
305 //Check all the data copied;
328 //Check all the data copied;
351 //Check all the data copied;
374 //Check all the data copied;
450 //Check all the data copied;
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DBuiltinArrayAlgorithms.sts138 * @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/runtime_core/static_core/compiler/tools/
Dpbc_2_ir_doc_gen.sh15 # 1. If PBC2IR.md already exists, it is copied to PBC2IR_OLD.md.
18 # Another information isn't copied!
/arkcompiler/ets_runtime/ecmascript/mem/
Dbarriers.h51 // dstAddr/srcAddr is the address will be copied to/from.
59 // dstAddr/srcAddr is the address will be copied to/from.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/gtest_plugin/
Dets_interop_js_gtest.cpp71 size_t copied = 0; in Main() local
72 … status = napi_get_value_string_utf8(env, jsArrayElement, utf8Str.data(), utf8Str.size(), &copied); in Main()
Dets_interop_js_gtest.h184 size_t copied; in GetString() local
185 status = napi_get_value_string_utf8(env, jsStr, v.data(), length + 1, &copied); in GetString()
187 ASSERT(length == copied); in GetString()
/arkcompiler/ets_runtime/test/sharedtest/sharedtypedarray/
Dexpect_output.txt564 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]
Dsharedtypedarray.ts672 let copied = array.copyWithin(3, 1, 3); variable
673 print((copied instanceof ctor) + ', copied: [' + copied + ']'); // [1, 2, 3, 2, 3, 6, 7, 8]
675 copied = array.copyWithin(3, 1);
676 print(copied); // [1, 2, 3, 2, 3, 4, 5, 6]
/arkcompiler/runtime_core/static_core/runtime/include/
Dvtable_builder_base-inl.h164 CopiedMethod copied(info->GetMethod()); in AddDefaultInterfaceMethods()
165 copied.SetStatus(entry.GetStatus()); in AddDefaultInterfaceMethods()
166 orderedCopiedMethods_[entry.GetIndex()] = copied; in AddDefaultInterfaceMethods()
Dclass-inl.h282 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/ets_runtime/test/moduletest/array/
Dexpect_output.txt243 Copied Array 1: 3,2,3
244 Copied Array 2: apple,apple,banana
245 Copied Array 3: true,false,true
246 Copied Array 4: [object Object],[object Object]
247 Copied Array 5: NaN,NaN,NaN
/arkcompiler/runtime_core/static_core/compiler/docs/
Dif_conversion_doc.md67 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 …
Descape_analysis.md26 …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/
Darray.cpp59 // Order is matters here: GC can read data before it copied if we set length first. in Create()
117 // Order is matters here: GC can read data before it copied if we set length first. in CreateTagged()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_resolver.h44 * SaveStateInst's inputs were split between these users then SaveStateInst should be copied in
/arkcompiler/runtime_core/static_core/runtime/mem/
Dpygote_space_allocator.h38 STATE_PYGOTE_FORKING, // at first pygote fork, allocate for copied objects
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_resolver.h49 * SaveStateInst's inputs were split between these users then SaveStateInst should be copied in
/arkcompiler/runtime_core/static_core/plugins/ets/templates/stdlib/
DArray_builtin_algorithms.sts.j2250 * @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/runtime_core/static_core/plugins/ets/doc/interop_js/
D3_primitive_conversions.rst16 Primitive type values are copied between ArkTS VM and JS VM by value.
246 - Primitive type value is copied from JS VM to ArkTS VM by value so there is no connection with JS…
262 - JS object of primitive types with capital letter(Number, Boolean, String) also will be copied and…
402 - When primitive type values are copied to ArkTS they become ESObject that contains primitive valu…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/escompat/
DDeepCopyTest.sts150 assertTrue(objs[1] === null, "null element copied incorrectly")
151 assertTrue(objs[2] === undefined, "undefined element copied incorrectly")
/arkcompiler/ets_runtime/tools/ap_file_viewer/
Dbuild.py46 print(f'Copied {absolute_file_path} to {dist_dir}')
/arkcompiler/ets_frontend/ets2panda/ir/
Dtyped.h63 …// NOTE: when cloning node its type is not copied but removed empty so that it can be re-checked f…

123