Home
last modified time | relevance | path

Searched refs:testArray3 (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/test/moduletest/container/
Dcontainer_list.js203 const testArray3 = []; variable
206 testArray3.push(i);
225 testArray3.push(10);
231 testArray3.splice(10, 1);
233 for(let i = 0; i < testArray3.length; i++) {
234 if (proxy[i] !== testArray3[i]) {
241 testArray3.splice(9, 1);
243 for(let i = 0; i < testArray3.length; i++) {
244 if (proxy[i] !== testArray3[i]) {
247 testArray3[i] = testArray3[i] * 2;
[all …]
Dcontainer_linked_list.js289 let testArray3 = []; variable
292 testArray3.push(i);
297 if (d !== testArray3[i]) {
329 testArray3.splice(5, 1);
334 if (arr1[i] !== testArray3[i]) {
Dcontainer_plainarray.js92 let testArray3 = [0, 5] variable