Home
last modified time | relevance | path

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

/external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/
D15.4.5.2-2.js47 addCase( new Array(), 0, Math.pow(2,14), Math.pow(2,14) );
49 addCase( new Array(), 0, 1, 1 );
51 addCase( new Array(Math.pow(2,12)), Math.pow(2,12), 0, 0 );
52 addCase( new Array(Math.pow(2,13)), Math.pow(2,13), Math.pow(2,12), Math.pow(2,12) );
53 addCase( new Array(Math.pow(2,12)), Math.pow(2,12), Math.pow(2,12), Math.pow(2,12) );
54 addCase( new Array(Math.pow(2,14)), Math.pow(2,14), Math.pow(2,12), Math.pow(2,12) )
66 addCase( a, i, i, i );
67 addCase( a, i, Math.pow(2,12)+i+1, Math.pow(2,12)+i+1, true );
68 addCase( a, Math.pow(2,12)+5, 0, 0, true );
72 function addCase( object, old_len, set_len, new_len, checkitems ) { function