/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
while-004.js | 3 * ECMA Section: 9 var SECTION = "while-004"; 15 writeHeaderToLog( SECTION + " "+ TITLE); 49 SECTION, 78 SECTION, 84 SECTION, 90 SECTION, 117 SECTION, 124 SECTION, 130 SECTION, [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/ |
ignoreCase.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, "/xyz/i.ignoreCase", 46 testcases[count++] = new TestCase ( SECTION, "/xyz/.ignoreCase", 50 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/[a-z]+/ig)", 54 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/[a-z]+/i)", 58 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/([a-z]+)/ig)", 62 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/([a-z]+)/i)", 66 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/[a-z]+/)", 70 testcases[count++] = new TestCase ( SECTION, "(new RegExp('xyz','i')).ignoreCase" [all...] |
backslash.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, "'abcde'.match(new RegExp('\e'))", 46 testcases[count++] = new TestCase ( SECTION, "'ab\\cde'.match(new RegExp('\\\\'))", 50 testcases[count++] = new TestCase ( SECTION, "'ab\\cde'.match(/\\\\/)", 54 testcases[count++] = new TestCase ( SECTION, 60 testcases[count++] = new TestCase ( SECTION,
|
exec.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, 50 testcases[count++] = new TestCase ( SECTION, 54 testcases[count++] = new TestCase ( SECTION, 59 testcases[count++] = new TestCase ( SECTION,
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/Script/ |
in-001.js | 24 Section: 33 var SECTION = "in-001"; 39 writeHeaderToLog( SECTION + " "+ TITLE); 47 SECTION,
|
/external/elfutils/libelf/ |
elf_strptr.c | 1 /* Return string pointer from string section. 48 /* Find the section in the list. */ 81 /* This is no string section. */ 88 /* The given offset is too big, it is beyond this section. */ 97 /* This is no string section. */ 104 /* The given offset is too big, it is beyond this section. */ 111 /* Read the section data. */
|
/external/llvm/test/MC/ELF/ |
entsize.s | 1 // RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump --dump-section-data | FileCheck %s 6 .section .rodata.str1.1,"aMS",@progbits,1 19 .section .rodata.str2.1,"aMS",@progbits,2 31 .section .rodata.cst8,"aM",@progbits,8 35 // CHECK: # Section 4 47 // CHECK: # Section 5 59 // CHECK: # Section 6
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/ |
15.4.1.3.js | 24 ECMA Section: 15.4.1.3 Array() 38 var SECTION = "15.4.1.3"; 43 writeHeaderToLog( SECTION + " "+ TITLE); 53 array[item++] = new TestCase( SECTION, 58 array[item++] = new TestCase( SECTION, 63 array[item++] = new TestCase( SECTION, 68 array[item++] = new TestCase( SECTION,
|
15.4.3.1-2.js | 24 ECMA Section: 15.4.3.1 Array.prototype 32 var SECTION = "15.4.3.1-1"; 37 writeHeaderToLog( SECTION + " "+ TITLE); 47 array[item++] = new TestCase( SECTION, "var props = ''; for ( p in Array ) { props += p } props", "", eval("var props = ''; for ( p in Array ) { props += p } props") ); 49 array[item++] = new TestCase( SECTION, "Array.prototype = null; Array.prototype", ARRAY_PROTO, eval("Array.prototype = null; Array.prototype") ); 51 array[item++] = new TestCase( SECTION, "delete Array.prototype", false, delete Array.prototype ); 52 array[item++] = new TestCase( SECTION, "delete Array.prototype; Array.prototype", ARRAY_PROTO, eval("delete Array.prototype; Array.prototype") );
|
15.4.1.1.js | 24 ECMA Section: 15.4.1 Array( item0, item1,... ) 38 var SECTION = "15.4.1.1"; 43 writeHeaderToLog( SECTION + " "+ TITLE); 63 array[item++] = new TestCase( SECTION, "typeof Array(1,2)", "object", typeof Array(1,2) ); 64 array[item++] = new TestCase( SECTION, "(Array(1,2)).toString", Array.prototype.toString, (Array(1,2)).toString ); 65 array[item++] = new TestCase( SECTION, 71 array[item++] = new TestCase( SECTION, "(Array(1,2)).length", 2, (Array(1,2)).length ); 72 array[item++] = new TestCase( SECTION, "var arr = (Array(1,2)); arr[0]", 1, eval("var arr = (Array(1,2)); arr[0]") ); 73 array[item++] = new TestCase( SECTION, "var arr = (Array(1,2)); arr[1]", 2, eval("var arr = (Array(1,2)); arr[1]") ); 74 array[item++] = new TestCase( SECTION, "var arr = (Array(1,2)); String(arr)", "1,2", eval("var arr = (Array(1,2)); String(arr)") ) [all...] |
15.4.2.1-1.js | 24 ECMA Section: 15.4.2.1 new Array( item0, item1, ... ) 51 var SECTION = "15.4.2.1-1"; 56 writeHeaderToLog( SECTION + " "+ TITLE); 66 array[item++] = new TestCase( SECTION, "typeof new Array(1,2)", "object", typeof new Array(1,2) ); 67 array[item++] = new TestCase( SECTION, "(new Array(1,2)).toString", Array.prototype.toString, (new Array(1,2)).toString ); 68 array[item++] = new TestCase( SECTION, 73 array[item++] = new TestCase( SECTION, "(new Array(1,2)).length", 2, (new Array(1,2)).length ); 74 array[item++] = new TestCase( SECTION, "var arr = (new Array(1,2)); arr[0]", 1, eval("var arr = (new Array(1,2)); arr[0]") ); 75 array[item++] = new TestCase( SECTION, "var arr = (new Array(1,2)); arr[1]", 2, eval("var arr = (new Array(1,2)); arr[1]") ); 76 array[item++] = new TestCase( SECTION, "var arr = (new Array(1,2)); String(arr)", "1,2", eval("var arr = (new Array(1,2)); String(arr) (…) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/ |
15.6.4-1.js | 24 ECMA Section: 15.6.4 Properties of the Boolean Prototype Object 41 var SECTION = "15.6.4-1"; 43 writeHeaderToLog( SECTION + " Properties of the Boolean Prototype Object"); 51 array[item++] = new TestCase( SECTION, "typeof Boolean.prototype == typeof( new Boolean )", true, typeof Boolean.prototype == typeof( new Boolean ) ); 52 array[item++] = new TestCase( SECTION, "typeof( Boolean.prototype )", "object", typeof(Boolean.prototype) ); 53 array[item++] = new TestCase( SECTION, 57 array[item++] = new TestCase( SECTION, "Boolean.prototype.valueOf()", false, Boolean.prototype.valueOf() );
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.2.2-6.js | 24 ECMA Section: 15.9.2.2 Date constructor used as a function 37 var SECTION = "15.9.2.2"; 41 writeHeaderToLog(SECTION+" "+TITLE ); 53 array[item++] = new TestCase( SECTION, "Date(2031,11,31,23,59,59)", (new Date()).toString(), Date(2031,11,31,23,59,59)); 54 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,0)", (new Date()).toString(), Date(2032,0,1,0,0,0) ); 55 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,1)", (new Date()).toString(), Date(2032,0,1,0,0,1) ); 56 array[item++] = new TestCase( SECTION, "Date(2031,11,31,16,0,0,0)", (new Date()).toString(), Date(2031,11,31,16,0,0,0));
|
15.9.5.5.js | 24 ECMA Section: 15.9.5.5 39 var SECTION = "15.9.5.5"; 44 writeHeaderToLog( SECTION + " "+ TITLE); 64 testcases[tc++] = new TestCase( SECTION, 69 testcases[tc++] = new TestCase( SECTION, 76 testcases[tc++] = new TestCase( SECTION, 81 testcases[tc++] = new TestCase( SECTION, 86 testcases[tc++] = new TestCase( SECTION, 91 testcases[tc++] = new TestCase( SECTION, 96 testcases[tc++] = new TestCase( SECTION, [all...] |
15.9.5.6.js | 24 ECMA Section: 15.9.5.6 34 var SECTION = "15.9.5.6"; 39 writeHeaderToLog( SECTION + " "+ TITLE); 65 testcases[tc++] = new TestCase( SECTION, 70 testcases[tc++] = new TestCase( SECTION, 77 testcases[tc++] = new TestCase( SECTION, 82 testcases[tc++] = new TestCase( SECTION, 87 testcases[tc++] = new TestCase( SECTION, 92 testcases[tc++] = new TestCase( SECTION, 97 testcases[tc++] = new TestCase( SECTION, [all...] |
15.9.5.7.js | 24 ECMA Section: 15.9.5.7 34 var SECTION = "15.9.5.7"; 39 writeHeaderToLog( SECTION + " "+ TITLE); 65 testcases[tc++] = new TestCase( SECTION, 70 testcases[tc++] = new TestCase( SECTION, 77 testcases[tc++] = new TestCase( SECTION, 82 testcases[tc++] = new TestCase( SECTION, 87 testcases[tc++] = new TestCase( SECTION, 92 testcases[tc++] = new TestCase( SECTION, 97 testcases[tc++] = new TestCase( SECTION, [all...] |
15.9.5.8.js | 24 ECMA Section: 15.9.5.8 35 var SECTION = "15.9.5.8"; 40 writeHeaderToLog( SECTION + " "+ TITLE); 66 testcases[tc++] = new TestCase( SECTION, 71 testcases[tc++] = new TestCase( SECTION, 81 testcases[tc++] = new TestCase( SECTION, 86 testcases[tc++] = new TestCase( SECTION, 91 testcases[tc++] = new TestCase( SECTION, 96 testcases[tc++] = new TestCase( SECTION, 101 testcases[tc++] = new TestCase( SECTION, [all...] |
15.9.5.9.js | 24 ECMA Section: 15.9.5.9 35 var SECTION = "15.9.5.8"; 40 writeHeaderToLog( SECTION + " "+ TITLE); 66 testcases[tc++] = new TestCase( SECTION, 71 testcases[tc++] = new TestCase( SECTION, 81 testcases[tc++] = new TestCase( SECTION, 86 testcases[tc++] = new TestCase( SECTION, 91 testcases[tc++] = new TestCase( SECTION, 96 testcases[tc++] = new TestCase( SECTION, 101 testcases[tc++] = new TestCase( SECTION, [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/ |
7.1-2.js | 24 ECMA Section: 7.1 White Space 42 var SECTION = "7.1-2"; 47 writeHeaderToLog( SECTION + " "+ TITLE); 55 array[item++] = new TestCase( SECTION, "'var'+'\u000B'+'MYVAR1=10;MYVAR1'", 10, eval('var'+'\u000B'+'MYVAR1=10;MYVAR1') ); 56 array[item++] = new TestCase( SECTION, "'var'+'\u0009'+'MYVAR2=10;MYVAR2'", 10, eval('var'+'\u0009'+'MYVAR2=10;MYVAR2') ); 57 array[item++] = new TestCase( SECTION, "'var'+'\u000C'+'MYVAR3=10;MYVAR3'", 10, eval('var'+'\u000C'+'MYVAR3=10;MYVAR3') ); 58 array[item++] = new TestCase( SECTION, "'var'+'\u0020'+'MYVAR4=10;MYVAR4'", 10, eval('var'+'\u0020'+'MYVAR4=10;MYVAR4') );
|
7.7.3-2.js | 24 ECMA Section: 7.7.3 Numeric Literals 44 var SECTION = "7.7.3-2"; 50 writeHeaderToLog( SECTION + " "+ TITLE); 54 testcases[tc++] = new TestCase( SECTION, 59 testcases[tc++] = new TestCase( SECTION, 64 testcases[tc++] = new TestCase( SECTION, 70 testcases[tc++] = new TestCase( SECTION,
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/ |
15.7.4-1.js | 24 ECMA Section: 15.7.4.1 Properties of the Number Prototype Object 31 var SECTION = "15.7.4-1"; 34 writeHeaderToLog( SECTION + "Properties of the Number prototype object"); 45 array[item++] = new TestCase(SECTION, "Number.prototype.valueOf()", 0, Number.prototype.valueOf() ); 46 array[item++] = new TestCase(SECTION, "typeof(Number.prototype)", "object", typeof(Number.prototype) ); 47 array[item++] = new TestCase(SECTION, "Number.prototype.constructor == Number", true, Number.prototype.constructor == Number ); 48 // array[item++] = new TestCase(SECTION, "Number.prototype == Number.__proto__", true, Number.prototype == Number.__proto__ );
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/inherit/ |
proto_9.js | 24 Section: 41 var SECTION = "proto_9"; 46 writeHeaderToLog( SECTION + " "+ TITLE); 81 testcases[tc++] = new TestCase( SECTION, 86 testcases[tc++] = new TestCase( SECTION, 91 testcases[tc++] = new TestCase( SECTION, 96 testcases[tc++] = new TestCase( SECTION,
|
/external/chromium/chrome/browser/resources/options/ |
browser_options.html | 3 <section id="startupSection"> 39 </section> 40 <section> 63 </section> 64 <section> 83 </section> 84 <section> 106 </section> 108 <section> 116 </section> [all...] |
/external/llvm/include/llvm/MC/ |
MCSectionELF.h | 24 /// MCSectionELF - This represents a section on linux, lots of unix variants 27 /// SectionName - This is the name of the section. The referenced memory is 31 /// Type - This is the sh_type field of a section, drawn from the enums below. 34 /// Flags - This is the sh_flags field of a section, drawn from the enums. 38 /// EntrySize - The size of each entry in this section. This size only 40 /// section does not contain fixed-sized entries 'EntrySize' will be 0. 47 MCSectionELF(StringRef Section, unsigned type, unsigned flags, 49 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags), 54 /// ShouldOmitSectionDirective - Decides whether a '.section' directive 55 /// should be printed before the section nam [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.12-1.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...] |