/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.13.js | 24 ECMA Section: 11.12 Conditional Operator 50 var SECTION = "11.12"; 55 writeHeaderToLog( SECTION + " Conditional operator( ? : )"); 61 array[item++] = new TestCase( SECTION, "true ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED")); 62 array[item++] = new TestCase( SECTION, "false ? 'FAILED' : 'PASSED'", "PASSED", (false?"FAILED":"PASSED")); 64 array[item++] = new TestCase( SECTION, "1 ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED")); 65 array[item++] = new TestCase( SECTION, "0 ? 'FAILED' : 'PASSED'", "PASSED", (false?"FAILED":"PASSED")); 66 array[item++] = new TestCase( SECTION, "-1 ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED")); 68 array[item++] = new TestCase( SECTION, "NaN ? 'FAILED' : 'PASSED'", "PASSED", (Number.NaN?"FAILED":"PASSED")); 70 array[item++] = new TestCase( SECTION, "var VAR = true ? , : 'FAILED'", "PASSED", (VAR = true ? "PASSED" : "FAILED") ) [all...] |
11.2.3-1.js | 24 ECMA Section: 11.2.3. Function Calls 32 (section 0). 57 var SECTION = "11.2.3-1"; 62 writeHeaderToLog( SECTION + " "+ TITLE); 69 testcases[tc++] = new TestCase( SECTION, 74 testcases[tc++] = new TestCase( SECTION, 83 testcases[tc++] = new TestCase( SECTION, 90 testcases[tc++] = new TestCase( SECTION, 96 testcases[tc++] = new TestCase( SECTION, 102 testcases[tc++] = new TestCase( SECTION, [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
15.3.2.1-3.js | 24 ECMA Section: 15.3.2.1 The Function Constructor 31 See the text for description of this section. 39 var SECTION = "15.3.2.1-3"; 44 writeHeaderToLog( SECTION + " "+ TITLE); 74 array[item++] = new TestCase( SECTION, "MyFunc.length", 2000, MyFunc.length ); 75 array[item++] = new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, eval("var MY_OB = MyFunc("+s+"); MY_OB") ); 77 array[item++] = new TestCase( SECTION, "MyObject.length", 2000, MyObject.length ); 79 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length") ); 80 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()") ); 81 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1(1,2,3,4,5)", 3, eval("FUN1 = new (…) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/ |
7.1-3.js | 24 ECMA Section: 7.1 White Space 42 var SECTION = "7.1-3"; 47 writeHeaderToLog( SECTION + " "+ TITLE); 56 array[item++] = new TestCase( SECTION, "'var'+'\u000B'+'MYVAR1=10;MYVAR1'", 10, eval('var'+'\u000B'+'MYVAR1=10;MYVAR1') ); 57 array[item++] = new TestCase( SECTION, "'var'+'\u0009'+'MYVAR2=10;MYVAR2'", 10, eval('var'+'\u0009'+'MYVAR2=10;MYVAR2') ); 58 array[item++] = new TestCase( SECTION, "'var'+'\u000C'+'MYVAR3=10;MYVAR3'", 10, eval('var'+'\u000C'+'MYVAR3=10;MYVAR3') ); 59 array[item++] = new TestCase( SECTION, "'var'+'\u0020'+'MYVAR4=10;MYVAR4'", 10, eval('var'+'\u0020'+'MYVAR4=10;MYVAR4') ); 63 array[item++] = new TestCase( SECTION, 68 array[item++] = new TestCase( SECTION, 72 array[item++] = new TestCase( SECTION, [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/ |
compile.js | 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 36 writeHeaderToLog( SECTION + " "+ TITLE); 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, [all...] |
flags.js | 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 36 writeHeaderToLog( SECTION + " "+ TITLE); 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'))" [all...] |
hexadecimal.js | 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 36 writeHeaderToLog( SECTION + " "+ TITLE); 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, [all...] |
octal.js | 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 36 writeHeaderToLog( SECTION + " "+ TITLE); 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, [all...] |
plus.js | 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 36 writeHeaderToLog( SECTION + " "+ TITLE); 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+/)" [all...] |
simple_form.js | 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 36 writeHeaderToLog( SECTION + " "+ TITLE); 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, [all...] |
test.js | 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 36 writeHeaderToLog( SECTION + " "+ TITLE); 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, [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/statements/ |
switch.js | 32 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 39 writeHeaderToLog( SECTION + " "+ TITLE); 60 testcases[count++] = new TestCase ( SECTION, 'switch statement', 63 testcases[count++] = new TestCase ( SECTION, 'switch statement', 66 testcases[count++] = new TestCase ( SECTION, 'switch statement', 98 testcases[count++] = new TestCase ( SECTION, 'switch statement', 101 testcases[count++] = new TestCase ( SECTION, 'switch statement', 104 testcases[count++] = new TestCase ( SECTION, 'switch statement', 107 testcases[count++] = new TestCase ( SECTION, 'switch statement', 110 testcases[count++] = new TestCase ( SECTION, 'switch statement' [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/inherit/ |
proto_12.js | 24 Section: 38 var SECTION = "proto_12"; 43 writeHeaderToLog( SECTION + " "+ TITLE); 105 testcases[tc++] = new TestCase( SECTION, 110 testcases[tc++] = new TestCase( SECTION, 117 testcases[tc++] = new TestCase( SECTION, 122 testcases[tc++] = new TestCase( SECTION, 127 testcases[tc++] = new TestCase( SECTION, 132 testcases[tc++] = new TestCase( SECTION, 137 testcases[tc++] = new TestCase( SECTION, [all...] |
proto_7.js | 24 Section: 41 var SECTION = "proto_6"; 46 writeHeaderToLog( SECTION + " "+ TITLE); 90 testcases[tc++] = new TestCase( SECTION, 95 testcases[tc++] = new TestCase( SECTION, 100 testcases[tc++] = new TestCase( SECTION, 105 testcases[tc++] = new TestCase( SECTION, 110 testcases[tc++] = new TestCase( SECTION, 115 testcases[tc++] = new TestCase( SECTION, 120 testcases[tc++] = new TestCase( SECTION, [all...] |
proto_8.js | 24 Section: 39 var SECTION = "proto_8"; 44 writeHeaderToLog( SECTION + " "+ TITLE); 88 testcases[tc++] = new TestCase( SECTION, 93 testcases[tc++] = new TestCase( SECTION, 98 testcases[tc++] = new TestCase( SECTION, 103 testcases[tc++] = new TestCase( SECTION, 108 testcases[tc++] = new TestCase( SECTION, 113 testcases[tc++] = new TestCase( SECTION, 118 testcases[tc++] = new TestCase( SECTION, [all...] |
/libcore/luni/src/main/java/org/w3c/dom/ |
CDATASection.java | 18 * recognized in a CDATA section is the "]]>" string that ends the CDATA 19 * section. CDATA sections cannot be nested. Their primary purpose is for 23 * contained by the CDATA section. Note that this <em>may</em> contain characters that need to be escaped outside of CDATA sections and 26 * of a CDATA section. 31 * <p> No lexical check is done on the content of a CDATA section and it is 33 * in the content, which is illegal in a CDATA section per section 2.7 of [<a href='http://www.w3.org/TR/2004/REC-xml-20040204'>XML 1.0</a>]. The 35 * serialization or the cdata section must be splitted before the 45 * end the CDATA section before the character, output the character using a 46 * character reference or entity reference, and open a new CDATA section fo [all...] |
/development/ide/xcode/expat.xcodeproj/ |
project.pbxproj | 9 /* Begin PBXBuildFile section */ 18 /* End PBXBuildFile section */ 20 /* Begin PBXFileReference section */ 30 /* End PBXFileReference section */ 32 /* Begin PBXFrameworksBuildPhase section */ 40 /* End PBXFrameworksBuildPhase section */ 42 /* Begin PBXGroup section */ 83 /* End PBXGroup section */ 85 /* Begin PBXHeadersBuildPhase section */ 95 /* End PBXHeadersBuildPhase section */ [all...] |
/development/ide/xcode/gif.xcodeproj/ |
project.pbxproj | 9 /* Begin PBXBuildFile section */ 18 /* End PBXBuildFile section */ 20 /* Begin PBXFileReference section */ 30 /* End PBXFileReference section */ 32 /* Begin PBXFrameworksBuildPhase section */ 40 /* End PBXFrameworksBuildPhase section */ 42 /* Begin PBXGroup section */ 91 /* End PBXGroup section */ 93 /* Begin PBXHeadersBuildPhase section */ 103 /* End PBXHeadersBuildPhase section */ [all...] |
/development/ide/xcode/giflib.xcodeproj/ |
project.pbxproj | 9 /* Begin PBXBuildFile section */ 20 /* End PBXBuildFile section */ 22 /* Begin PBXFileReference section */ 34 /* End PBXFileReference section */ 36 /* Begin PBXFrameworksBuildPhase section */ 44 /* End PBXFrameworksBuildPhase section */ 46 /* Begin PBXGroup section */ 89 /* End PBXGroup section */ 91 /* Begin PBXHeadersBuildPhase section */ 103 /* End PBXHeadersBuildPhase section */ [all...] |
/development/ide/xcode/ports-mac.xcodeproj/ |
project.pbxproj | 9 /* Begin PBXBuildFile section */ 17 /* End PBXBuildFile section */ 19 /* Begin PBXFileReference section */ 29 /* End PBXFileReference section */ 31 /* Begin PBXFrameworksBuildPhase section */ 39 /* End PBXFrameworksBuildPhase section */ 41 /* Begin PBXGroup section */ 82 /* End PBXGroup section */ 84 /* Begin PBXHeadersBuildPhase section */ 93 /* End PBXHeadersBuildPhase section */ [all...] |
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
allocators.sgml | 1 <!-- ##### SECTION Title ##### --> 4 <!-- ##### SECTION Short_Description ##### --> 7 <!-- ##### SECTION Long_Description ##### --> 17 <!-- ##### SECTION See_Also ##### --> 22 <!-- ##### SECTION Stability_Level ##### -->
|
base64.sgml | 1 <!-- ##### SECTION Title ##### --> 4 <!-- ##### SECTION Short_Description ##### --> 7 <!-- ##### SECTION Long_Description ##### --> 29 <!-- ##### SECTION See_Also ##### --> 34 <!-- ##### SECTION Stability_Level ##### -->
|
string_chunks.sgml | 1 <!-- ##### SECTION Title ##### --> 4 <!-- ##### SECTION Short_Description ##### --> 7 <!-- ##### SECTION Long_Description ##### --> 38 <!-- ##### SECTION See_Also ##### --> 43 <!-- ##### SECTION Stability_Level ##### -->
|
/external/libvpx/ |
keywords.dox | 10 \section MUST 16 \section MUSTNOT MUST NOT 21 \section SHOULD 28 \section SHOULDNOT SHOULD NOT 36 \section MAY
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/ |
15.6.3.1.js | 24 ECMA Section: 15.6.3.1 Boolean.prototype 40 var SECTION = "15.6.3.1"; 45 writeHeaderToLog( SECTION + " "+ TITLE); 54 array[item++] = new TestCase( SECTION, "Boolean.prototype.valueOf()", false, Boolean.prototype.valueOf() ); 55 array[item++] = new TestCase( SECTION, "Boolean.length", 1, Boolean.length );
|