/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.5.1.js | 24 ECMA Section: String.length 37 var SECTION = "15.5.5.1"; 42 writeHeaderToLog( SECTION + " "+ TITLE); 51 array[item++] = new TestCase( SECTION, 56 array[item++] = new TestCase( SECTION, 61 array[item++] = new TestCase( SECTION, 66 array[item++] = new TestCase( SECTION, 71 array[item++] = new TestCase( SECTION,
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/LexicalConventions/ |
regexp-literals-002.js | 3 * ECMA Section: 7.8.5 9 var SECTION = "LexicalConventions/regexp-literals-002.js";
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/Array/ |
general1.js | 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 36 writeHeaderToLog( SECTION + " "+ TITLE); 47 testcases[count++] = new TestCase( SECTION, "array1.pop()", array1.pop(),'cat'); 50 testcases[count++] = new TestCase( SECTION, "array1.shift()", array1.shift(),123); 53 testcases[count++] = new TestCase( SECTION, "state of array", String([96,"dog",-99,"mouse"]), String(array1)); 54 testcases[count++] = new TestCase( SECTION, "array1.length", array1.length,4); 58 testcases[count++] = new TestCase( SECTION, "array1.shift()", array1.shift(),"mouse"); 59 testcases[count++] = new TestCase( SECTION, "array1.shift()", "undefined", String(array1.shift()));
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/function/ |
Function_object.js | 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 36 writeHeaderToLog( SECTION + " "+ TITLE); 50 testcases[count++] = new TestCase( SECTION, "f.name", 53 testcases[count++] = new TestCase( SECTION, "f.length", 56 testcases[count++] = new TestCase( SECTION, "f.arity", 59 testcases[count++] = new TestCase( SECTION, "f(2,3,4)", 64 testcases[count++] = new TestCase( SECTION, "(new Function()).name", 67 testcases[count++] = new TestCase( SECTION, "(new Function()).toString()",
|
nesting.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, "outer:x ", 48 testcases[count++] = new TestCase( SECTION, "outer:y ", 53 testcases[count++] = new TestCase( SECTION, "inner:x ", 55 testcases[count++] = new TestCase( SECTION, "inner:y ", 60 testcases[count++] = new TestCase( SECTION, "outer:x ", 62 testcases[count++] = new TestCase( SECTION, "outer:y ",
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/ |
RegExp_lastIndex.js | 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 37 writeHeaderToLog( SECTION + " "+ TITLE); 45 testcases[count++] = new TestCase ( SECTION, "re=/x./g; re.lastIndex=4; re.exec('xyabcdxa')", 49 testcases[count++] = new TestCase ( SECTION, "re.lastIndex", 53 testcases[count++] = new TestCase ( SECTION, "re.exec('xyabcdef')", 57 testcases[count++] = new TestCase ( SECTION, "re.lastIndex", 61 testcases[count++] = new TestCase ( SECTION, "re.exec('xyabcdef')", 66 testcases[count++] = new TestCase ( SECTION, "re.lastIndex=30; re.exec('123xaxbxc456')",
|
RegExp_dollar_number.js | 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 37 writeHeaderToLog( SECTION + " "+ TITLE); 44 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$1", 48 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$2", 52 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$3", 56 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$4", 60 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$5", 64 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$6", 72 testcases[count++] = new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$1", 74 testcases[count++] = new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$2" [all...] |
/external/llvm/include/llvm/MC/ |
MCSymbol.h | 30 /// Section member is set to indicate what section it lives in. Otherwise, if 31 /// it is a reference to an external entity, it has a null section. 33 // Special sentinal value for the absolute pseudo section. 42 /// Section - The section the symbol is defined in. This is null for 45 const MCSection *Section; 62 : Name(name), Section(0), Value(0), 87 /// Defined symbols are either absolute or in some section. 89 return Section != 0 [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.2.2-3.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 ); 54 array[item++] = new TestCase( SECTION, "Date(1899,11,31,23,59,59)", (new Date()).toString(), Date(1899,11,31,23,59,59)); 55 array[item++] = new TestCase( SECTION, "Date(1900,0,1,0,0,0)", (new Date()).toString(), Date(1900,0,1,0,0,0) ); 56 array[item++] = new TestCase( SECTION, "Date(1900,0,1,0,0,1)", (new Date()).toString(), Date(1900,0,1,0,0,1) ); 57 array[item++] = new TestCase( SECTION, "Date(1899,11,31,16,0,0,0)", (new Date()).toString(), Date(1899,11,31,16,0,0,0)); 62 array[item++] = new TestCase( SECTION, "Date( 2000,1,29,0,0,0)", (new Date()).toString(), Date(2000,1,29,0,0,0)); 63 array[item++] = new TestCase( SECTION, "Date( 2000,1,28,23,59,59)", (new Date()).toString(), Date( 2000,1,28,23,59,59)); 64 array[item++] = new TestCase( SECTION, "Date( 2000,1,27,16,0,0)", (new Date()).toString(), Date(2000,1,27,16,0,0)) [all...] |
15.9.5.2-1.js | 24 ECMA Section: 15.9.5.2 Date.prototype.toString 38 var SECTION = "15.9.5.2"; 43 writeHeaderToLog( SECTION + " "+ TITLE); 47 testcases[tc++] = new TestCase( SECTION, 57 testcases[tc++] = new TestCase( SECTION, 62 testcases[tc++] = new TestCase( SECTION, 70 testcases[tc++] = new TestCase( SECTION, 75 testcases[tc++] = new TestCase( SECTION, 81 testcases[tc++] = new TestCase( SECTION, 86 testcases[tc++] = new TestCase( SECTION, [all...] |
15.9.5.2.js | 24 ECMA Section: 15.9.5.2 Date.prototype.toString 38 var SECTION = "15.9.5.2"; 43 writeHeaderToLog( SECTION + " "+ TITLE); 47 testcases[tc++] = new TestCase( SECTION, 57 testcases[tc++] = new TestCase( SECTION, 62 testcases[tc++] = new TestCase( SECTION, 70 testcases[tc++] = new TestCase( SECTION, 75 testcases[tc++] = new TestCase( SECTION, 81 testcases[tc++] = new TestCase( SECTION, 86 testcases[tc++] = new TestCase( SECTION, [all...] |
15.9.2.2-5.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(2004,11,31,23,59,59)", (new Date()).toString(), Date(2004,11,31,23,59,59)); 54 array[item++] = new TestCase( SECTION, "Date(2005,0,1,0,0,0)", (new Date()).toString(), Date(2005,0,1,0,0,0) ); 55 array[item++] = new TestCase( SECTION, "Date(2005,0,1,0,0,1)", (new Date()).toString(), Date(2005,0,1,0,0,1) ); 56 array[item++] = new TestCase( SECTION, "Date(2004,11,31,16,0,0,0)", (new Date()).toString(), Date(2004,11,31,16,0,0,0)); 59 array[item++] = new TestCase( SECTION, "Date(2031,11,31,23,59,59)", (new Date()).toString(), Date(2031,11,31,23,59,59)); 60 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,0)", (new Date()).toString(), Date(2032,0,1,0,0,0) ); 61 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,1)", (new Date()).toString(), Date(2032,0,1,0,0,1) ) [all...] |
15.9.5.23-2.js | 24 ECMA Section: 15.9.5.23 36 var SECTION = "15.9.5.23-2"; 41 writeHeaderToLog( SECTION + " "+ TITLE); 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, [all...] |
15.9.5.23-4.js | 24 ECMA Section: 15.9.5.23 37 var SECTION = "15.9.5.23-2"; 42 writeHeaderToLog( SECTION + " "+ TITLE); 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, [all...] |
15.9.5.23-5.js | 24 ECMA Section: 15.9.5.23 37 var SECTION = "15.9.5.23-2"; 42 writeHeaderToLog( SECTION + " "+ TITLE); 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, [all...] |
15.9.5.23-6.js | 24 ECMA Section: 15.9.5.23 37 var SECTION = "15.9.5.23-2"; 42 writeHeaderToLog( SECTION + " "+ TITLE); 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, [all...] |
15.9.5.23-7.js | 24 ECMA Section: 15.9.5.23 37 var SECTION = "15.9.5.23-2"; 42 writeHeaderToLog( SECTION + " "+ TITLE); 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, [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/ |
15.2.4.2.js | 24 ECMA Section: 15.2.4.2 Object.prototype.toString() 38 var SECTION = "15.2.4.2"; 43 writeHeaderToLog( SECTION + " "+ TITLE); 52 array[item++] = new TestCase( SECTION, "(new Object()).toString()", "[object Object]", (new Object()).toString() ); 54 array[item++] = new TestCase( SECTION, "myvar = this; myvar.toString = Object.prototype.toString; myvar.toString()", 58 array[item++] = new TestCase( SECTION, "myvar = MyObject; myvar.toString = Object.prototype.toString; myvar.toString()", 62 array[item++] = new TestCase( SECTION, "myvar = new MyObject( true ); myvar.toString = Object.prototype.toString; myvar.toString()", 66 array[item++] = new TestCase( SECTION, "myvar = new Number(0); myvar.toString = Object.prototype.toString; myvar.toString()", 70 array[item++] = new TestCase( SECTION, "myvar = new String(''); myvar.toString = Object.prototype.toString; myvar.toString()", 74 array[item++] = new TestCase( SECTION, "myvar = Math; myvar.toString = Object.prototype.toString; myvar.toString()" [all...] |
/external/elfutils/po/ |
elfutils.pot | 184 msgid "cannot get section header string table index" 208 "%*s%-*s %-*s Class Type %-*s %*s Section\n" 214 msgid "%s: entry size in section `%s' is not what we expect" 219 msgid "%s: size of section `%s' is not multiple of entry size" 270 "Display DWARF section content. SECTION can be one of abbrev, aranges, " 310 msgid "Unknown DWARF debug section `%s'.\n" 441 msgid " Start of section headers: %<PRId64> %s\n" 470 msgid " Size of section header entries: %<PRId16> %s\n" 475 msgid " Number of section headers entries: %<PRId16> [all...] |
/external/elfutils/src/ |
ld.h | 129 /* Index of the section header string table section. We use a 132 might be stored in the section header of section zero. The 140 /* Handle for the section. Note that we can store a section 143 assume the section reference remains valid at all times. */ 145 /* Section header. */ 153 /* Offset of this files section in the combined section. * 541 struct filemask_section_name *section; member in union:input_rule::__anon5745 570 struct output_section section; member in union:output_rule::__anon5747 [all...] |
/external/openssl/crypto/conf/ |
conf_api.c | 81 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section) 85 if ((conf == NULL) || (section == NULL)) return(NULL); 87 vv.section=(char *)section; 94 const char *section) 98 v=_CONF_get_section(conf,section); 105 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) 110 ts = (STACK_OF(CONF_VALUE) *)section->value; 112 value->section=section->section; [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/ |
15.4.2.2-2.js | 24 ECMA Section: 15.4.2.2 new Array(len) 52 var SECTION = "15.4.2.2-2"; 57 writeHeaderToLog( SECTION + " "+ TITLE); 66 array[item++] = new TestCase( SECTION, "(new Array(new Number(1073741823))).length", 1, (new Array(new Number(1073741823))).length ); 67 array[item++] = new TestCase( SECTION, "(new Array(new Number(0))).length", 1, (new Array(new Number(0))).length ); 68 array[item++] = new TestCase( SECTION, "(new Array(new Number(1000))).length", 1, (new Array(new Number(1000))).length ); 69 array[item++] = new TestCase( SECTION, "(new Array('mozilla, larryzilla, curlyzilla')).length", 1, (new Array('mozilla, larryzilla, curlyzilla')).length ); 70 array[item++] = new TestCase( SECTION, "(new Array(true)).length", 1, (new Array(true)).length ); 71 array[item++] = new TestCase( SECTION, "(new Array(false)).length", 1, (new Array(false)).length); 72 array[item++] = new TestCase( SECTION, "(new Array(new Boolean(true)).length", 1, (new Array(new Boolean(true))).length ) [all...] |
15.4.2.3.js | 24 ECMA Section: 15.4.2.3 new Array() 35 var SECTION = "15.4.2.3"; 40 writeHeaderToLog( SECTION + " "+ TITLE); 48 array[item++] = new TestCase( SECTION, "new Array() +''", "", (new Array()) +"" ); 49 array[item++] = new TestCase( SECTION, "typeof new Array()", "object", (typeof new Array()) ); 50 array[item++] = new TestCase( SECTION, 55 array[item++] = new TestCase( SECTION, "(new Array()).length", 0, (new Array()).length ); 56 array[item++] = new TestCase( SECTION, "(new Array()).toString == Array.prototype.toString", true, (new Array()).toString == Array.prototype.toString ); 57 array[item++] = new TestCase( SECTION, "(new Array()).join == Array.prototype.join", true, (new Array()).join == Array.prototype.join ); 58 array[item++] = new TestCase( SECTION, "(new Array()).reverse == Array.prototype.reverse", true, (new Array()).reverse == Arr (…) [all...] |
15.4.4.2.js | 24 ECMA Section: 15.4.4.2 Array.prototype.toString() 34 var SECTION = "15.4.4.2"; 39 writeHeaderToLog( SECTION + " "+ TITLE); 48 array[item++] = new TestCase( SECTION, "Array.prototype.toString.length", 0, Array.prototype.toString.length ); 50 array[item++] = new TestCase( SECTION, "(new Array()).toString()", "", (new Array()).toString() ); 51 array[item++] = new TestCase( SECTION, "(new Array(2)).toString()", ",", (new Array(2)).toString() ); 52 array[item++] = new TestCase( SECTION, "(new Array(0,1)).toString()", "0,1", (new Array(0,1)).toString() ); 53 array[item++] = new TestCase( SECTION, "(new Array( Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY)).toString()", "NaN,Infinity,-Infinity", (new Array( Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY)).toString() ); 55 array[item++] = new TestCase( SECTION, "(new Array( Boolean(1), Boolean(0))).toString()", "true,false", (new Array(Boolean(1),Boolean(0))).toString() ); 56 array[item++] = new TestCase( SECTION, "(new Array(void 0,null)).toString()", ",", (new Array(void 0,null)).toString() ) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
15.3.1.1-3.js | 24 ECMA Section: 15.3.1.1 The Function Constructor Called as a Function 32 See the text for description of this section. 40 var SECTION = "15.3.1.1-3"; 45 writeHeaderToLog( SECTION + " "+ TITLE); 73 testcases[testcases.length] = new TestCase( SECTION, "MyFunc.length", 2000, MyFunc.length ); 74 testcases[testcases.length] = new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, MY_OB ); 75 testcases[testcases.length] = new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, eval("var MY_OB = MyFunc("+s+"); MY_OB") ); 77 testcases[testcases.length] = new TestCase( SECTION, "MyObject.length", 2000, MyObject.length ); 79 testcases[testcases.length] = new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1.length", 3, eval("FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1.length") ); 80 testcases[testcases.length] = new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1()", 3, eval("FUN1 = Function (…) [all...] |