Lines Matching refs:set
43 map.set("test plainarray add:", res)
44 map.set("test plainarray 'add' ret:", ret === undefined)
45 map.set("test plainarray length:", proxy.length === 6)
46 map.set("test plainarray has:", proxy.has(2))
47 map.set("test plainarray getIndexOfValue:", proxy.getIndexOfValue("1") === 1)
48 map.set("test plainarray getIndexOfKey:", proxy.getIndexOfKey(5) === 5)
49 map.set("test plainarray getKeyAt:", proxy.getKeyAt(1) === 1)
50 map.set("test plainarray getValueAt:", proxy.getValueAt(2) === "2")
59 map.set("test plainarray clone:", res)
63 map.set("test plainarray removeRes:", removeRes)
83 map.set("test plainarray removeRangeFrom:", res)
89 map.set("test plainarray forEach:", res)
96 map.set("test plainarray for of:", res)
106 map.set("test plainarray Symbol.iterator:", res)
117 map.set("test plainarray setValueAt and get:", proxy1.get(2) === "123")
119 map.set("test plainarray clear:", proxy1.length === 0)
120 map.set("test plainarray 'clear' ret:", ret === undefined)
121 map.set("test plainarray isEmpty:", proxy1.isEmpty())
128 map.set("test plainarray toString:", proxy1.toString() == "0:0,1:1,2:2,3:3,4:4,5:5");
134 map.set("test getValueAt exception when arraylist is empty:", res)
140 map.set("test removeRangeFrom exception when arraylist is empty:", res)
146 map.set("test setValueAt exception when arraylist is empty:", res)
155 map.set("test PlainArray[i] overFlowTest:", overFlowTest);