/external/chromium_org/v8/test/webkit/ |
D | dfg-rshift-by-zero-eliminate-valuetoint32-expected.txt | 29 PASS f() is undefined 30 PASS f() is undefined 31 PASS f() is undefined 32 PASS f() is undefined 33 PASS f() is undefined 34 PASS f() is undefined 35 PASS f() is undefined 36 PASS f() is undefined 37 PASS f() is undefined 38 PASS f() is undefined [all …]
|
D | dfg-inline-arguments-out-of-bounds-expected.txt | 29 PASS result is "undefined" 30 PASS result is "undefined" 31 PASS result is "undefined" 32 PASS result is "undefined" 33 PASS result is "undefined" 34 PASS result is "undefined" 35 PASS result is "undefined" 36 PASS result is "undefined" 37 PASS result is "undefined" 38 PASS result is "undefined" [all …]
|
D | dfg-uint8clampedarray-out-of-bounds-put-by-val-alias-expected.txt | 29 PASS foo(array, 100000000, 42) is undefined 30 PASS foo(array, 100000000, 42) is undefined 31 PASS foo(array, 100000000, 42) is undefined 32 PASS foo(array, 100000000, 42) is undefined 33 PASS foo(array, 100000000, 42) is undefined 34 PASS foo(array, 100000000, 42) is undefined 35 PASS foo(array, 100000000, 42) is undefined 36 PASS foo(array, 100000000, 42) is undefined 37 PASS foo(array, 100000000, 42) is undefined 38 PASS foo(array, 100000000, 42) is undefined [all …]
|
D | dfg-arguments-out-of-bounds-expected.txt | 2029 PASS result is "undefined" 2030 PASS result is "undefined" 2031 PASS result is "undefined" 2032 PASS result is "undefined" 2033 PASS result is "undefined" 2034 PASS result is "undefined" 2035 PASS result is "undefined" 2036 PASS result is "undefined" 2037 PASS result is "undefined" 2038 PASS result is "undefined" [all …]
|
D | dfg-convert-this-dom-window-expected.txt | 24 …e.call in the DFG, but more precisely, that we give the correct this object in case it is undefined 32 PASS myFunction.call() is [this, "myFunction", undefined] 33 PASS myFunction.call(null) is [this, "myFunction", undefined] 34 PASS myFunction.call(undefined) is [this, "myFunction", undefined] 36 PASS myFunction.aliasedCall() is [this, "myFunction", undefined] 37 PASS myFunction.aliasedCall(null) is [this, "myFunction", undefined] 38 PASS myFunction.aliasedCall(undefined) is [this, "myFunction", undefined] 44 PASS myFunction.call() is [this, "myFunction", undefined] 45 PASS myFunction.call(null) is [this, "myFunction", undefined] 46 PASS myFunction.call(undefined) is [this, "myFunction", undefined] [all …]
|
D | dfg-inline-arguments-use-from-all-the-places-broken-expected.txt | 29 … __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined. 30 … __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined. 31 … __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined. 32 … __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined. 33 … __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined. 34 … __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined. 35 … __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined. 36 … __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined. 37 … __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined. 38 … __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined. [all …]
|
D | apply-varargs.js | 33 if (a1 !== undefined) 35 if (a2 !== undefined) 37 if (a3 !== undefined) 39 if (a4 !== undefined) 41 if (a5 !== undefined) 43 if (a6 !== undefined) 45 if (a7 !== undefined) 47 if (a8 !== undefined) 50 return undefined; 73 varArgs[i] = undefined; [all …]
|
D | regexp-in-and-foreach-handling-expected.txt | 29 PASS testRegExpMatchesArray(0) is ["abcdef", "a", undefined, "c", undefined, "e", undefined] 30 PASS testInOperator(0) is ["abcdef", "a", undefined, "c", undefined, "e", undefined] 31 PASS testForEachFunction(0) is ["abcdef", "a", undefined, "c", undefined, "e", undefined] 32 PASS testRegExpMatchesArray(1) is ["a", "a", undefined] 33 PASS testInOperator(1) is ["a", "a", undefined] 34 PASS testForEachFunction(1) is ["a", "a", undefined] 35 PASS testRegExpMatchesArray(2) is ["xa", undefined, "a"] 36 PASS testInOperator(2) is ["xa", undefined, "a"] 37 PASS testForEachFunction(2) is ["xa", undefined, "a"] 38 PASS testRegExpMatchesArray(3) is ["xa", undefined, "a", undefined] [all …]
|
/external/chromium_org/v8/test/mjsunit/ |
D | array-indexing.js | 29 var undef_array = [0,,2,undefined,4,,6,undefined,8,,10]; 33 sparse_array[200] = undefined; 39 sparse_array[800] = undefined; 68 assertEquals(3, undef_array.indexOf(undefined)); 69 assertEquals(3, undef_array.indexOf(undefined, 3)); 70 assertEquals(7, undef_array.indexOf(undefined, 4)); 71 assertEquals(7, undef_array.indexOf(undefined, 7)); 72 assertEquals(-1, undef_array.indexOf(undefined, 8)); 73 assertEquals(3, undef_array.indexOf(undefined, -11)); 74 assertEquals(3, undef_array.indexOf(undefined, -8)); [all …]
|
D | regexp-lookahead.js | 93 execRE(re, "b", ["b", undefined]); 107 execRE(re, "b", ["b", undefined]); 108 execRE(re, "c", ["c", undefined]); 111 execRE(/^(?:(?=(b))|a)b/, "ab", ["ab", undefined]); 112 execRE(/^(?:(?=(b)(?:(?=(c))|d))|)bd/, "bd", ["bd", "b", undefined]); 125 execRE(re, "4", ["4", undefined]); 126 execRE(re, "x", ["", undefined]); 139 execRE(re, "xy", ["", undefined, undefined]); 144 execRE(re, "xz", ["", "x", undefined]); 149 execRE(re, "xz", ["", undefined, undefined]); [all …]
|
D | outobject-double-for-in.js | 32 this.x1 = undefined; 33 this.x2 = undefined; 34 this.x3 = undefined; 35 this.x4 = undefined; 36 this.x5 = undefined; 37 this.x6 = undefined; 39 this.x8 = undefined; 40 this.x9 = undefined; 41 this.x10 = undefined; 42 this.x11 = undefined; [all …]
|
D | bitwise-operations-undefined.js | 31 assertEquals(undefined | 1, 1); 32 assertEquals(undefined & 1, 0); 33 assertEquals(undefined ^ 1, 1); 34 assertEquals(undefined << 1, 0); 35 assertEquals(undefined >> 1, 0); 36 assertEquals(undefined >>> 1, 0); 40 assertEquals(1 | undefined, 1); 41 assertEquals(1 & undefined, 0); 42 assertEquals(1 ^ undefined, 1); 43 assertEquals(1 << undefined, 1); [all …]
|
/external/chromium_org/v8/test/webkit/fast/regex/ |
D | parentheses-expected.txt | 31 PASS regexp3.exec('abacadabe') is ['abe','ab','b',undefined] 32 PASS regexp4.exec('abacadabe') is ['abe','ab','b',undefined] 33 PASS regexp5.exec('abacadabe') is ['abe','ab','b','b',undefined,undefined] 34 PASS regexp6.exec('abcde') is ['ab','ab','b','b',undefined,undefined] 37 PASS regexp9.exec('asdfjejgsdflaksdfjkeljghkjea') is ['a','a',undefined] 40 …le, WA to Buckley, WA') is ['Seattle, WA to Buckley, WA', undefined, 'Seattle', 'WA', undefined, '… 41 PASS regexp13.exec('zxcasd;fl ^AaaAAaaaf;lrlrzs') is ['AaaAAaaaf;lrlrzs',undefined,'AaaAAaaaf;lrlrz… 42 PASS regexp14.exec('b') is ['b',undefined,'b'] 43 PASS regexp15.exec('abdf') is ['abdf',undefined,'abd','f'] 54 PASS regexp25.exec('this is a test') is ['this','this',undefined] [all …]
|
/external/chromium_org/v8/test/webkit/fast/js/ |
D | arguments-expected.txt | 32 PASS access_4(1, 2, 3) is undefined 33 PASS access_5(1, 2, 3) is undefined 35 PASS access_2(1) is undefined 36 PASS access_3(1) is undefined 37 PASS access_4(1) is undefined 38 PASS access_5(1) is undefined 54 PASS tear_off_equal_access_4(1, 2, 3) is undefined 55 PASS tear_off_equal_access_5(1, 2, 3) is undefined 57 PASS tear_off_too_few_access_2(1) is undefined 58 PASS tear_off_too_few_access_3(1) is undefined [all …]
|
D | array-prototype-properties-expected.txt | 29 PASS Array.prototype.toString.call(undefined) threw exception TypeError: Cannot convert undefined o… 30 PASS Array.prototype.toLocaleString.call(undefined) threw exception TypeError: Cannot convert undef… 31 …S Array.prototype.concat.call(undefined, []) threw exception TypeError: Array.prototype.concat cal… 32 PASS Array.prototype.join.call(undefined, []) threw exception TypeError: Array.prototype.join calle… 33 PASS Array.prototype.pop.call(undefined) threw exception TypeError: Array.prototype.pop called on n… 34 PASS Array.prototype.push.call(undefined, {}) threw exception TypeError: Array.prototype.push calle… 35 …SS Array.prototype.reverse.call(undefined) threw exception TypeError: Array.prototype.reverse call… 36 PASS Array.prototype.shift.call(undefined) threw exception TypeError: Array.prototype.shift called … 37 …SS Array.prototype.slice.call(undefined, 0, 1) threw exception TypeError: Array.prototype.slice ca… 38 PASS Array.prototype.sort.call(undefined) threw exception TypeError: Array.prototype.sort called on… [all …]
|
/external/chromium_org/v8/test/mjsunit/es6/ |
D | generators-iteration.js | 39 assertIteratorResult(undefined, true, iter.next()); 114 [undefined], 116 [undefined]); 119 [1, undefined], 121 [1, undefined]); 124 [1, 2, undefined], 126 [1, 2, undefined]); 139 [1, undefined], 144 [1, 2, undefined], 149 [0, 1, 2, 3, undefined], [all …]
|
/external/chromium_org/v8/test/webkit/fast/js/kde/ |
D | var_decl_init.js | 28 return (myvar == undefined); 33 return (myvar == undefined); 44 return (myvar == undefined); 51 return (myvar == undefined); 57 return (myvar == undefined); 65 return (myvar == undefined); 72 return (myvar == undefined); 78 return (myvar == undefined); 85 return (myvar == undefined); 91 return (myvar == undefined); [all …]
|
/external/chromium_org/third_party/WebKit/Tools/qunit/test/ |
D | same.js | 7 equals(QUnit.equiv(null, undefined), false, "null"); 13 equals(QUnit.equiv(undefined, undefined), true, "undefined"); 14 equals(QUnit.equiv(undefined, null), false, "undefined"); 15 equals(QUnit.equiv(undefined, 0), false, "undefined"); 16 equals(QUnit.equiv(undefined, false), false, "undefined"); 17 equals(QUnit.equiv(undefined, {}), false, "undefined"); 18 equals(QUnit.equiv(undefined, []), false, "undefined"); 19 equals(QUnit.equiv(undefined, ""), false, "undefined"); 30 equals(QUnit.equiv(0/0, undefined), false, "NaN"); 35 equals(QUnit.equiv(1/0, undefined), false, "NaN, Infinity"); [all …]
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
D | proxies-with.js | 69 get: function(r, k) { key = k; return k === "a" ? "onproxy" : undefined }, 72 return k === "a" ? {value: "onproxy", configurable: true} : undefined 78 get2: function(r, k) { key = k; return k === "a" ? "onproxy" : undefined }, 81 return k === "a" ? {value: "onproxy", configurable: true} : undefined 88 return k === "a" ? {value: "onproxy", configurable: true} : undefined 96 return k === "a" ? {value: "onproxy", configurable: true} : undefined 104 {get value() { return "onproxy" }, configurable: true} : undefined 109 get: undefined, 112 return k === "a" ? {value: "onproxy", configurable: true} : undefined 153 get: function(r, k) { key = k; return k === "a" ? onproxy : undefined }, [all …]
|
D | dataview-accessors.js | 65 if (littleEndian != undefined) 78 if (littleEndian != undefined) 85 assertSame(undefined, doSet()); 114 test(isTestingGet, "Int8", undefined, 0); 117 test(isTestingGet, "Int8", 1e12, undefined); 120 test(isTestingGet, "Uint8", undefined, 0); 123 test(isTestingGet, "Uint8", 1e12, undefined); 127 test(isTestingGet, "Int16", undefined, 256, true); 131 test(isTestingGet, "Int16", 1e12, undefined, true); 135 test(isTestingGet, "Int16", undefined, 1); [all …]
|
D | string-codepointat.js | 17 assertEquals("abc\uD834\uDF06def".codePointAt(-Infinity), undefined); 18 assertEquals("abc\uD834\uDF06def".codePointAt(-1), undefined); 24 assertEquals("abc\uD834\uDF06def".codePointAt(42), undefined); 25 assertEquals("abc\uD834\uDF06def".codePointAt(Infinity), undefined); 26 assertEquals("abc\uD834\uDF06def".codePointAt(Infinity), undefined); 30 assertEquals("abc\uD834\uDF06def".codePointAt(undefined), 0x61); 37 assertEquals("\uD834\uDF06def".codePointAt(-1), undefined); 41 assertEquals("\uD834\uDF06def".codePointAt(42), undefined); 44 assertEquals("\uD834\uDF06def".codePointAt(undefined), 0x1D306); 50 assertEquals("\uD834abc".codePointAt(-1), undefined); [all …]
|
D | array-of.js | 33 a = Array.of(undefined, null, 3.14, []); 34 assertEquals(a, [undefined, null, 3.14, []]); 43 assertEquals(Array.of(undefined), [undefined]); 44 assertEquals(Array.of(undefined, undefined), [undefined, undefined]); 45 assertEquals(Array.of.apply(null, [,,undefined]), [undefined, undefined, undefined]); 46 assertEquals(Array.of.apply(null, Array(4)), [undefined, undefined, undefined, undefined]); 113 var lastObj = null, lastVal = undefined; 162 [undefined, null, false, "cow"].forEach(function(val) {
|
/external/valgrind/main/gdbserver_tests/ |
D | watchpoints.c | 10 static char undefined[10] = "undefined"; variable 23 if (undefined[0] == 'u') in main() 28 if (undefined[4] == 'f') in main() 33 if (undefined[8] == 'd') in main() 41 undefined[0] = 'U'; in main() 44 undefined[4] = 'F'; in main() 47 undefined[8] = 'D'; in main() 53 fprintf(stderr, "value %s\n", undefined); in main() 56 undefined[0] = '0'; in main() 59 undefined[4] = '4'; in main() [all …]
|
/external/ltrace/sysdeps/linux-gnu/ia64/ |
D | breakpoint.c | 131 undefined /* undefined or reserved */ enumerator 141 {undefined, undefined, undefined}, /* 06 */ 142 {undefined, undefined, undefined}, /* 07 */ 155 {undefined, undefined, undefined}, /* 14 */ 156 {undefined, undefined, undefined}, /* 15 */ 161 {undefined, undefined, undefined}, /* 1A */ 162 {undefined, undefined, undefined}, /* 1B */ 165 {undefined, undefined, undefined}, /* 1E */ 166 {undefined, undefined, undefined}, /* 1F */
|
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/ |
D | world.js | 44 if (shapeName == undefined) { 48 if (mass == undefined) { 52 if (friction == undefined) { 56 if (transform == undefined) { 60 if (transform[0] == undefined) { 68 if (shape['name'] == undefined) { 103 if (shape['wx'] == undefined) { 106 if (shape['wy'] == undefined) { 109 if (shape['wz'] == undefined) { 116 if (shape['radius'] == undefined) { [all …]
|