Home | History | Annotate | Download | only in Array

Lines Matching refs:actual

40 var actual = '';
53 actual = Array.prototype.join.call(value);
57 actual = e + '';
59 reportCompare(expect, actual, summary + ': join');
66 actual = Array.prototype.reverse.call(value) + '';
70 actual = e + '';
72 reportCompare(expect, actual, summary + ': reverse');
79 actual = Array.prototype.sort.call(value) + '';
83 actual = e + '';
85 reportCompare(expect, actual, summary + ': sort');
92 actual = Array.prototype.push.call(value, 'd', 'e', 'f');
96 actual = e + '';
98 reportCompare(expect, actual, summary + ': push');
106 actual = Array.prototype.pop.call(value);
110 actual = e + '';
112 reportCompare(expect, actual, summary + ': pop');
120 actual = Array.prototype.unshift.call(value, 'a', 'b', 'c');
124 actual = e + '';
126 reportCompare(expect, actual, summary + ': unshift');
134 actual = Array.prototype.shift.call(value);
138 actual = e + '';
140 reportCompare(expect, actual, summary + ': shift');
148 actual = Array.prototype.splice.call(value, 1, 1) + '';
152 actual = e + '';
154 reportCompare(expect, actual, summary + ': splice');
161 actual = Array.prototype.concat.call(value, 'd', 'e', 'f') + '';
165 actual = e + '';
167 reportCompare(expect, actual, summary + ': concat');
174 actual = Array.prototype.slice.call(value, 1, 2) + '';
178 actual = e + '';
180 reportCompare(expect, actual, summary + ': slice');
187 actual = Array.prototype.indexOf.call(value, 'b');
191 actual = e + '';
193 reportCompare(expect, actual, summary + ': indexOf');
200 actual = Array.prototype.lastIndexOf.call(value, 'b');
204 actual = e + '';
206 reportCompare(expect, actual, summary + ': lastIndexOf');
211 actual = '';
216 {actual += array[index].toUpperCase();});
220 actual = e + '';
222 reportCompare(expect, actual, summary + ': forEach');
229 actual = Array.prototype.map.call(value,
235 actual = e + '';
237 reportCompare(expect, actual, summary + ': map');
244 actual = Array.prototype.filter.call(value,
250 actual = e + '';
252 reportCompare(expect, actual, summary + ': filter');
259 actual = Array.prototype.every.call(value,
265 actual = e + '';
267 reportCompare(expect, actual, summary + ': every');