HomeSort by relevance Sort by last modified time
    Searched full:testcases (Results 351 - 375 of 1072) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
everything.js 39 var testcases = new Array();
42 testcases[count++] = new TestCase ( SECTION, "'Sally and Fred are sure to come'.match(/^[a-z\\s]*/i)",
46 testcases[count++] = new TestCase ( SECTION, "'test123W+xyz'.match(new RegExp('^[a-z]*[0-9]+[A-Z]?.(123|xyz)$'))",
50 testcases[count++] = new TestCase ( SECTION, "'number one 12365 number two 9898'.match(/(\d+)\D+(\d+)/)",
55 testcases[count++] = new TestCase ( SECTION, "'See Spot run.'.match(simpleSentence)",
59 testcases[count++] = new TestCase ( SECTION, "'I like it. What's up? I said NO!'.match(simpleSentence)",
63 testcases[count++] = new TestCase ( SECTION, "'the quick brown fox jumped over the lazy dogs'.match(/((\\w+)\\s*)+/)",
68 for ( tc=0; tc < testcases.length; tc++ ) {
69 testcases[tc].passed = writeTestCaseResult(
70 testcases[tc].expect
    [all...]
interval.js 39 var testcases = new Array();
42 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2}c'))",
46 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{8}'))",
50 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2,}c'))",
54 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{8,}c'))",
58 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2,3}c'))",
62 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{42,93}c'))",
66 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{0,93}c'))",
70 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('bx{0,93}c'))",
74 testcases[count++] = new TestCase ( SECTION, "'weirwerdf'.match(new RegExp('.{0,93}'))"
    [all...]
string_replace.js 39 var testcases = new Array();
42 testcases[count++] = new TestCase ( SECTION, "'adddb'.replace(/ddd/,'XX')",
46 testcases[count++] = new TestCase ( SECTION, "'adddb'.replace(/eee/,'XX')",
50 testcases[count++] = new TestCase ( SECTION, "'34 56 78b 12'.replace(new RegExp('[0-9]+b'),'**')",
54 testcases[count++] = new TestCase ( SECTION, "'34 56 78b 12'.replace(new RegExp('[0-9]+c'),'XX')",
58 testcases[count++] = new TestCase ( SECTION, "'original'.replace(new RegExp(),'XX')",
62 testcases[count++] = new TestCase ( SECTION, "'qwe ert x\t\n 345654AB'.replace(new RegExp('x\\s*\\d+(..)$'),'****')",
68 for ( tc=0; tc < testcases.length; tc++ ) {
69 testcases[tc].passed = writeTestCaseResult(
70 testcases[tc].expect
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/statements/
break.js 39 var testcases = new Array();
49 testcases[count++] = new TestCase ( SECTION, 'breaking out of "for" loop',
70 testcases[count++] = new TestCase ( SECTION, 'breaking out of a "for" loop with a "label"',
82 testcases[count++] = new TestCase ( SECTION, 'breaking out of a "while" loop',
108 testcases[count++] = new TestCase ( SECTION, 'breaking out of a "while" loop with a "label"',
120 testcases[count++] = new TestCase ( SECTION, 'breaking out of a "do" loop',
145 testcases[count++] = new TestCase ( SECTION, 'breaking out of a "do" loop with a "label"',
150 for ( tc=0; tc < testcases.length; tc++ ) {
151 testcases[tc].passed = writeTestCaseResult(
152 testcases[tc].expect
    [all...]
continue.js 39 var testcases = new Array();
52 testcases[count++] = new TestCase ( SECTION, '"continue" in "for" loop',
73 testcases[count++] = new TestCase ( SECTION, '"continue" in "for" loop with a "label"',
87 testcases[count++] = new TestCase ( SECTION, '"continue" in a "while" loop',
115 testcases[count++] = new TestCase ( SECTION, '"continue" in a "while" loop with a "label"',
130 testcases[count++] = new TestCase ( SECTION, '"continue" in a "do" loop',
158 testcases[count++] = new TestCase ( SECTION, '"continue" in a "do" loop with a "label"',
163 for ( tc=0; tc < testcases.length; tc++ ) {
164 testcases[tc].passed = writeTestCaseResult(
165 testcases[tc].expect
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.js 44 var testcases = getTestCases(); variable
51 // these testcases are ECMA_2
68 for ( tc=0; tc < testcases.length; tc++ ) {
69 testcases[tc].passed = writeTestCaseResult(
70 testcases[tc].expect,
71 testcases[tc].actual,
72 testcases[tc].description +" = "+ testcases[tc].actual );
73 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4.3-3.js 43 var testcases = new Array();
45 testcases = getTestCases();
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 );
67 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.13-1.js 42 var testcases = new Array();
59 testcases[tc++] = new TestCase( SECTION,
67 for ( tc=0; tc < testcases.length; tc++ ) {
68 testcases[tc].passed = writeTestCaseResult(
69 testcases[tc].expect,
70 testcases[tc].actual,
71 testcases[tc].description +" = "+
72 testcases[tc].actual );
74 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
15.9.5.13-6.js 42 var testcases = new Array();
59 testcases[tc++] = new TestCase( SECTION,
67 for ( tc=0; tc < testcases.length; tc++ ) {
68 testcases[tc].passed = writeTestCaseResult(
69 testcases[tc].expect,
70 testcases[tc].actual,
71 testcases[tc].description +" = "+
72 testcases[tc].actual );
74 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
15.9.5.13-7.js 42 var testcases = new Array();
61 testcases[tc++] = new TestCase( SECTION,
69 for ( tc=0; tc < testcases.length; tc++ ) {
70 testcases[tc].passed = writeTestCaseResult(
71 testcases[tc].expect,
72 testcases[tc].actual,
73 testcases[tc].description +" = "+
74 testcases[tc].actual );
76 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
15.9.5.2-2-n.js 49 var testcases = new Array();
53 testcases[tc++] = new TestCase( SECTION,
66 for ( tc=0; tc < testcases.length; tc++ ) {
67 testcases[tc].passed = writeTestCaseResult(
68 testcases[tc].expect,
69 testcases[tc].actual,
70 testcases[tc].description +" = "+
71 testcases[tc].actual );
73 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
15.9.5.21-3.js 42 var testcases = new Array();
61 testcases[tc++] = new TestCase( SECTION,
67 for ( tc=0; tc < testcases.length; tc++ ) {
68 testcases[tc].passed = writeTestCaseResult(
69 testcases[tc].expect,
70 testcases[tc].actual,
71 testcases[tc].description +" = "+
72 testcases[tc].actual );
74 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
15.9.5.21-4.js 42 var testcases = new Array();
61 testcases[tc++] = new TestCase( SECTION,
67 for ( tc=0; tc < testcases.length; tc++ ) {
68 testcases[tc].passed = writeTestCaseResult(
69 testcases[tc].expect,
70 testcases[tc].actual,
71 testcases[tc].description +" = "+
72 testcases[tc].actual );
74 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
15.9.5.21-5.js 42 var testcases = new Array();
61 testcases[tc++] = new TestCase( SECTION,
67 for ( tc=0; tc < testcases.length; tc++ ) {
68 testcases[tc].passed = writeTestCaseResult(
69 testcases[tc].expect,
70 testcases[tc].actual,
71 testcases[tc].description +" = "+
72 testcases[tc].actual );
74 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
15.9.5.21-6.js 42 var testcases = new Array();
62 testcases[tc++] = new TestCase( SECTION,
68 for ( tc=0; tc < testcases.length; tc++ ) {
69 testcases[tc].passed = writeTestCaseResult(
70 testcases[tc].expect,
71 testcases[tc].actual,
72 testcases[tc].description +" = "+
73 testcases[tc].actual );
75 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
15.9.5.21-7.js 42 var testcases = new Array();
61 testcases[tc++] = new TestCase( SECTION,
67 for ( tc=0; tc < testcases.length; tc++ ) {
68 testcases[tc].passed = writeTestCaseResult(
69 testcases[tc].expect,
70 testcases[tc].actual,
71 testcases[tc].description +" = "+
72 testcases[tc].actual );
74 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
15.9.5.23-3-n.js 44 var testcases = new Array();
48 testcases[tc++] = new TestCase( SECTION,
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 );
66 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
15.9.5.3-1-n.js 44 var testcases = new Array();
48 testcases[tc++] = new TestCase( SECTION,
62 for ( tc=0; tc < testcases.length; tc++ ) {
63 testcases[tc].passed = writeTestCaseResult(
64 testcases[tc].expect,
65 testcases[tc].actual,
66 testcases[tc].description +" = "+
67 testcases[tc].actual );
69 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8-2-n.js 55 var testcases = getTestCases(); variable
70 for ( tc=0; tc < testcases.length; tc++ ) {
71 testcases[tc].actual = eval( testcases[tc].actual );
73 testcases[tc].passed = writeTestCaseResult(
74 testcases[tc].expect,
75 testcases[tc].actual,
76 testcases[tc].description +" = "+
77 testcases[tc].actual );
79 testcases[tc].reason += "Math does not have the [Construct] property"
    [all...]
15.8-3-n.js 54 var testcases = getTestCases(); variable
68 for ( tc=0; tc < testcases.length; tc++ ) {
69 testcases[tc].actual = eval( testcases[tc].actual );
71 testcases[tc].passed = writeTestCaseResult(
72 testcases[tc].expect,
73 testcases[tc].actual,
74 testcases[tc].description +" = "+
75 testcases[tc].actual );
77 testcases[tc].reason += "Math does not have the [Call] property"
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
12.2-1.js 49 var testcases = new Array();
51 testcases[tc] = new TestCase( "SECTION",
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 );
66 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.3.js 45 var testcases = getTestCases(); variable
49 test( testcases );
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 +" = "+ testcases[tc].actual );
66 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_1/regress/
function-001.js 51 var testcases = new Array();
55 testcases[tc++] = new TestCase(
65 for ( tc=0; tc < testcases.length; tc++ ) {
66 testcases[tc].passed = writeTestCaseResult(
67 testcases[tc].expect,
68 testcases[tc].actual,
69 testcases[tc].description +" = "+
70 testcases[tc].actual );
72 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/function/
function-001-n.js 51 var testcases = new Array();
53 testcases[tc++] = new TestCase(
63 for ( tc=0; tc < testcases.length; tc++ ) {
64 testcases[tc].passed = writeTestCaseResult(
65 testcases[tc].expect,
66 testcases[tc].actual,
67 testcases[tc].description +" = "+
68 testcases[tc].actual );
70 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/Script/
function-001-n.js 51 var testcases = new Array();
53 testcases[tc++] = new TestCase(
63 for ( tc=0; tc < testcases.length; tc++ ) {
64 testcases[tc].passed = writeTestCaseResult(
65 testcases[tc].expect,
66 testcases[tc].actual,
67 testcases[tc].description +" = "+
68 testcases[tc].actual );
70 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
    [all...]

Completed in 160 milliseconds

<<11121314151617181920>>