HomeSort by relevance Sort by last modified time
    Searched full:testcases (Results 251 - 275 of 1036) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.12-2-n.js 44 var testcases = new Array();
48 testcases[tc] = new TestCase( SECTION,
55 testcases[tc].actual = eval ( testcases[tc].actual );
60 for ( tc=0; tc < testcases.length; tc++ ) {
61 testcases[tc].passed = writeTestCaseResult(
62 testcases[tc].expect,
63 testcases[tc].actual,
64 testcases[tc].description +" = "+
65 testcases[tc].actual )
    [all...]
11.12-3.js 44 var testcases = new Array();
48 testcases[tc] = new TestCase( SECTION,
55 testcases[tc].actual = eval ( testcases[tc].actual );
60 for ( tc=0; tc < testcases.length; tc++ ) {
61 testcases[tc].passed = writeTestCaseResult(
62 testcases[tc].expect,
63 testcases[tc].actual,
64 testcases[tc].description +" = "+
65 testcases[tc].actual )
    [all...]
11.12-4.js 44 var testcases = new Array();
48 testcases[tc] = new TestCase( SECTION,
55 testcases[tc].actual = eval ( testcases[tc].actual );
60 for ( tc=0; tc < testcases.length; tc++ ) {
61 testcases[tc].passed = writeTestCaseResult(
62 testcases[tc].expect,
63 testcases[tc].actual,
64 testcases[tc].description +" = "+
65 testcases[tc].actual )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.3.3-2.js 42 var testcases = getTestCases(); variable
43 test( testcases );
56 for ( tc = 0; tc < testcases.length; tc++ ) {
57 testcases[tc].actual = eval( testcases[tc].actual );
58 testcases[tc].passed = writeTestCaseResult(
59 testcases[tc].expect,
60 testcases[tc].actual,
61 testcases[tc].description +" = "+ testcases[tc].actual )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
12.6.1-1.js 38 var testcases = new Array();
40 testcases[tc++] = new TestCase( SECTION,
45 testcases[tc++] = new TestCase( SECTION,
50 testcases[tc++] = new TestCase( SECTION,
57 for ( tc=0; tc < testcases.length; tc++ ) {
58 testcases[tc].passed = writeTestCaseResult(
59 testcases[tc].expect,
60 testcases[tc].actual,
61 testcases[tc].description +" = "+
62 testcases[tc].actual )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/Array/
tostring_2.js 39 var testcases = new Array();
67 testcases[tc++] = new TestCase ( SECTION,
72 testcases[tc++] = new TestCase ( SECTION,
77 testcases[tc++] = new TestCase ( SECTION,
85 for ( tc=0; tc < testcases.length; tc++ ) {
86 testcases[tc].passed = writeTestCaseResult(
87 testcases[tc].expect,
88 testcases[tc].actual,
89 testcases[tc].description +" = "+
90 testcases[tc].actual )
    [all...]
tostring_1.js 40 var testcases = new Array();
67 testcases[tc++] = new TestCase ( SECTION,
74 testcases[tc++] = new TestCase ( SECTION,
80 testcases[tc++] = new TestCase( SECTION,
87 testcases[tc++] = new TestCase( SECTION,
94 testcases[tc++] = new TestCase( SECTION,
101 testcases[tc++] = new TestCase( SECTION,
113 testcases[tc++] = new TestCase ( SECTION,
119 testcases[tc++] = new TestCase( SECTION,
127 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
control_characters.js 40 var testcases = new Array();
43 testcases[count++] = new TestCase ( SECTION, "'?O? ?:i??'.match(new RegExp('.+'))",
48 testcases[count++] = new TestCase ( SECTION, "string1 = " + string1 + " string1.match(string1)",
54 testcases[count++] = new TestCase ( SECTION, "string1 = " + string1 + " string1.match(string1)",
59 for ( tc=0; tc < testcases.length; tc++ ) {
60 testcases[tc].passed = writeTestCaseResult(
61 testcases[tc].expect,
62 testcases[tc].actual,
63 testcases[tc].description +" = "+
64 testcases[tc].actual )
    [all...]
compile.js 39 var testcases = new Array();
45 testcases[count++] = new TestCase ( SECTION,
49 testcases[count++] = new TestCase ( SECTION,
53 testcases[count++] = new TestCase ( SECTION,
57 testcases[count++] = new TestCase ( SECTION,
63 testcases[count++] = new TestCase ( SECTION,
67 testcases[count++] = new TestCase ( SECTION,
71 testcases[count++] = new TestCase ( SECTION,
75 testcases[count++] = new TestCase ( SECTION,
82 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
flags.js 39 var testcases = new Array();
42 testcases[count++] = new TestCase ( SECTION, "'aBCdEfGHijKLmno'.match(/fghijk/i)",
45 testcases[count++] = new TestCase ( SECTION, "'aBCdEfGHijKLmno'.match(new RegExp('fghijk','i'))",
49 testcases[count++] = new TestCase ( SECTION, "'xa xb xc xd xe xf'.match(/x./g)",
52 testcases[count++] = new TestCase ( SECTION, "'xa xb xc xd xe xf'.match(new RegExp('x.','g'))",
56 testcases[count++] = new TestCase ( SECTION, "'xa Xb xc xd Xe xf'.match(/x./gi)",
59 testcases[count++] = new TestCase ( SECTION, "'xa Xb xc xd Xe xf'.match(new RegExp('x.','gi'))",
62 testcases[count++] = new TestCase ( SECTION, "'xa Xb xc xd Xe xf'.match(/x./ig)",
65 testcases[count++] = new TestCase ( SECTION, "'xa Xb xc xd Xe xf'.match(new RegExp('x.','ig'))",
71 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
hexadecimal.js 39 var testcases = new Array();
46 testcases[count++] = new TestCase ( SECTION,
54 testcases[count++] = new TestCase ( SECTION,
62 testcases[count++] = new TestCase ( SECTION,
70 testcases[count++] = new TestCase ( SECTION,
78 testcases[count++] = new TestCase ( SECTION,
82 testcases[count++] = new TestCase ( SECTION,
86 testcases[count++] = new TestCase ( SECTION,
90 testcases[count++] = new TestCase ( SECTION,
96 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
octal.js 39 var testcases = new Array();
46 testcases[count++] = new TestCase ( SECTION,
54 testcases[count++] = new TestCase ( SECTION,
62 testcases[count++] = new TestCase ( SECTION,
70 testcases[count++] = new TestCase ( SECTION,
78 testcases[count++] = new TestCase ( SECTION,
82 testcases[count++] = new TestCase ( SECTION,
86 testcases[count++] = new TestCase ( SECTION,
90 testcases[count++] = new TestCase ( SECTION,
96 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
plus.js 39 var testcases = new Array();
42 testcases[count++] = new TestCase ( SECTION, "'abcdddddefg'.match(new RegExp('d+'))",
46 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('o+'))",
50 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('d+'))",
54 testcases[count++] = new TestCase ( SECTION, "'abbbbbbbc'.match(new RegExp('(b+)(b+)(b+)'))",
58 testcases[count++] = new TestCase ( SECTION, "'abbbbbbbc'.match(new RegExp('(b+)(b*)'))",
62 testcases[count++] = new TestCase ( SECTION, "'abbbbbbbc'.match(new RegExp('b*b+'))",
66 testcases[count++] = new TestCase ( SECTION, "'abbbbbbbc'.match(/(b+)(b*)/)",
70 testcases[count++] = new TestCase ( SECTION, "'abbbbbbbc'.match(/b*b+/)",
75 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
simple_form.js 39 var testcases = new Array();
41 testcases[count++] = new TestCase ( SECTION,
45 testcases[count++] = new TestCase ( SECTION,
49 testcases[count++] = new TestCase ( SECTION,
54 testcases[count++] = new TestCase ( SECTION,
59 testcases[count++] = new TestCase ( SECTION,
63 testcases[count++] = new TestCase ( SECTION,
68 testcases[count++] = new TestCase ( SECTION,
72 testcases[count++] = new TestCase ( SECTION,
78 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
test.js 39 var testcases = new Array();
41 testcases[count++] = new TestCase ( SECTION,
45 testcases[count++] = new TestCase ( SECTION,
49 testcases[count++] = new TestCase ( SECTION,
53 testcases[count++] = new TestCase ( SECTION,
57 testcases[count++] = new TestCase ( SECTION,
61 testcases[count++] = new TestCase ( SECTION,
65 testcases[count++] = new TestCase ( SECTION,
69 testcases[count++] = new TestCase ( SECTION,
75 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.32-1.js 46 for ( tc=0; tc < testcases.length; tc++ ) {
47 testcases[tc].passed = writeTestCaseResult(
48 testcases[tc].expect,
49 testcases[tc].actual,
50 testcases[tc].description +" = "+
51 testcases[tc].actual );
53 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
56 return ( testcases );
88 var item = testcases.length
    [all...]
15.9.5.33-1.js 46 for ( tc=0; tc < testcases.length; tc++ ) {
47 testcases[tc].passed = writeTestCaseResult(
48 testcases[tc].expect,
49 testcases[tc].actual,
50 testcases[tc].description +" = "+
51 testcases[tc].actual );
53 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
56 return ( testcases );
88 var item = testcases.length
    [all...]
15.9.5.35-1.js 39 for ( tc=0; tc < testcases.length; tc++ ) {
40 testcases[tc].passed = writeTestCaseResult(
41 testcases[tc].expect,
42 testcases[tc].actual,
43 testcases[tc].description +" = "+
44 testcases[tc].actual );
46 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
49 return ( testcases );
70 var item = testcases.length
    [all...]
15.9.5.23-2.js 43 var testcases = new Array();
58 testcases[tc++] = new TestCase( SECTION,
63 testcases[tc++] = new TestCase( SECTION,
69 testcases[tc++] = new TestCase( SECTION,
74 testcases[tc++] = new TestCase( SECTION,
79 testcases[tc++] = new TestCase( SECTION,
84 testcases[tc++] = new TestCase( SECTION,
89 testcases[tc++] = new TestCase( SECTION,
94 testcases[tc++] = new TestCase( SECTION,
100 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
15.9.5.23-4.js 44 var testcases = new Array();
68 testcases[tc++] = new TestCase( SECTION,
73 testcases[tc++] = new TestCase( SECTION,
80 testcases[tc++] = new TestCase( SECTION,
85 testcases[tc++] = new TestCase( SECTION,
90 testcases[tc++] = new TestCase( SECTION,
95 testcases[tc++] = new TestCase( SECTION,
100 testcases[tc++] = new TestCase( SECTION,
105 testcases[tc++] = new TestCase( SECTION,
111 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
15.9.5.23-5.js 44 var testcases = new Array();
69 testcases[tc++] = new TestCase( SECTION,
74 testcases[tc++] = new TestCase( SECTION,
80 testcases[tc++] = new TestCase( SECTION,
85 testcases[tc++] = new TestCase( SECTION,
90 testcases[tc++] = new TestCase( SECTION,
95 testcases[tc++] = new TestCase( SECTION,
100 testcases[tc++] = new TestCase( SECTION,
105 testcases[tc++] = new TestCase( SECTION,
111 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
15.9.5.23-6.js 44 var testcases = new Array();
69 testcases[tc++] = new TestCase( SECTION,
74 testcases[tc++] = new TestCase( SECTION,
80 testcases[tc++] = new TestCase( SECTION,
85 testcases[tc++] = new TestCase( SECTION,
90 testcases[tc++] = new TestCase( SECTION,
95 testcases[tc++] = new TestCase( SECTION,
100 testcases[tc++] = new TestCase( SECTION,
105 testcases[tc++] = new TestCase( SECTION,
111 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
15.9.5.23-7.js 44 var testcases = new Array();
69 testcases[tc++] = new TestCase( SECTION,
74 testcases[tc++] = new TestCase( SECTION,
80 testcases[tc++] = new TestCase( SECTION,
85 testcases[tc++] = new TestCase( SECTION,
90 testcases[tc++] = new TestCase( SECTION,
95 testcases[tc++] = new TestCase( SECTION,
100 testcases[tc++] = new TestCase( SECTION,
105 testcases[tc++] = new TestCase( SECTION,
111 for ( tc=0; tc < testcases.length; tc++ )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/
shell.js 30 var testcases; variable
46 for ( tc=0; tc < testcases.length; tc++ ) {
47 testcases[tc].passed = writeTestCaseResult(
48 testcases[tc].expect,
49 testcases[tc].actual,
50 testcases[tc].description +" = "+
51 testcases[tc].actual );
53 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
56 return ( testcases );
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/Objects/
toString-001.js 42 var testcases = new Array();
46 testcases[testcases.length] = new TestCase( SECTION,
53 testcases[testcases.length] = new TestCase( SECTION,
60 testcases[testcases.length] = new TestCase( SECTION,
69 testcases[testcases.length] = new TestCase( SECTION,
80 for ( tc=0; tc < testcases.length; tc++ )
    [all...]

Completed in 272 milliseconds

<<11121314151617181920>>