Home | History | Annotate | Download | only in webkit

Lines Matching refs:array

25 "This test checks the behavior of the every() method on Array objects."
29 function isBigEnough(element, index, array) {
47 debug("3.0 Array Mutation Tests");
50 debug("3.1 Array Element Removal");
51 function isBigEnoughAndPop(element, index, array) {
52 array.pop();
59 debug("3.2 Array Element Changing");
60 function isBigEnoughAndChange(element, index, array) {
61 array[array.length-1-index]= 5;
68 debug("3.3 Array Element Addition");
69 function isBigEnoughAndPush(element, index, array) {
70 array.push(131);
78 function isBigEnoughAndException(element, index, array) {
96 var accumulator = new Array();
97 function isBigEnoughShortCircuit(element, index, array) {
111 function isNotUndefined(element, index, array) {
115 arr = new Array(20);