Home
last modified time | relevance | path

Searched refs:testArray (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/test/moduletest/container/
Dcontainer_arraylist.js49 let testArray = [] variable
53 testArray.push(i)
56 for(let i = 0; i < testArray.length; i++) {
57 if (proxy[i] !== testArray[i]) {
70 for(let i = 0; i < testArray.length; i++) {
71 if (array[i] !== testArray[i]) {
80 for(let i = 0; i < testArray.length; i++) {
81 if (newArrayList[i] !== testArray[i]) {
88 testArray.splice(3, 0, 999)
90 for(let i = 0; i < testArray.length; i++) {
[all …]
Dcontainer_vector.js85 let testArray = [] variable
89 testArray.push(i)
92 for(let i = 0; i < testArray.length; i++) {
93 if (proxy[i] !== testArray[i]) {
110 for(let i = 0; i < testArray.length; i++) {
111 if (array[i] !== testArray[i]) {
119 for(let i = 0; i < testArray.length; i++) {
120 if (newVector[i] !== testArray[i]) {
127 testArray.splice(3, 0, 999)
129 for(let i = 0; i < testArray.length; i++) {
[all …]
Dcontainer_deque.js28 let testArray = [] variable
31 testArray.push(i)
38 for(let i = 0; i < testArray.length; i++) {
39 if (proxy[i] !== testArray[i]) {
47 testArray.push(i)
51 for(let i = 0; i < testArray.length; i++) {
52 if (proxy[i] !== testArray[i]) {
60 if (d !== testArray[i]) {
70 if (data !== testArray[j]) {
86 if (testArray1[k] !== testArray[k]) {
Dcontainer_list.js26 const testArray = [] variable
31 testArray.push(i)
48 testArray.push(10)
54 testArray.splice(10, 1)
56 for(let i = 0; i < testArray.length; i++) {
57 if (list[i] !== testArray[i]) {
64 testArray.splice(9, 1)
66 for(let i = 0; i < testArray.length; i++) {
67 if (list[i] !== testArray[i]) {
70 testArray[i] = testArray[i] * 2
[all …]
Dcontainer_plainarray.js29 let testArray = ["0", "1", "2", "3", "4", "5"] variable
38 for(let i = 0; i < testArray.length; i++) {
39 if (proxy[i] !== testArray[i]) {
53 for(let i = 0; i < testArray.length; i++) {
54 if (newPlainArray[i] !== testArray[i]) {
61 testArray.splice(3, 1)
65 testArray.splice(2, 1)
67 for(let i = 0; i < testArray.length; i++) {
68 if (proxy.get(i) !== testArray[i]) {
74 testArray.splice(1, 2)
Dcontainer_linked_list.js26 let testArray = [] variable
30 testArray.push(i)
39 testArray.splice(9, 1)
41 for(let i = 0; i < testArray.length; i++) {
42 if (list[i] !== testArray[i]) {
49 testArray.splice(8, 1)
51 for(let i = 0; i < testArray.length; i++) {
52 if (list[i] !== testArray[i]) {
62 testArray.splice(3, 0, 999)
64 for(let i = 0; i < testArray.length; i++) {
[all …]
Dcontainer_stack.js28 let testArray = [] variable
36 testArray.push(i)
43 for(let i = 0; i < testArray.length; i++) {
44 if (proxy[i] !== testArray[i]) {
52 if (d !== testArray[i]) {
62 if (data !== testArray[j]) {
78 if (testArray1[k] !== testArray[k]) {
Dcontainer_queue.js28 let testArray = [] variable
32 testArray.push(i)
36 for(let i = 0; i < testArray.length; i++) {
37 if (proxy[i] !== testArray[i]) {
45 if (d !== testArray[i]) {
55 if (data !== testArray[j]) {
71 if (testArray1[k] !== testArray[k]) {