/external/v8/test/mjsunit/regress/ |
regress-687.js | 40 assertEquals(desc.get, undefined); 41 assertEquals(desc.set, undefined); 51 assertEquals(create.value, undefined); 57 Object.defineProperty(obj1, 'p', {get: undefined, set: undefined}); 62 assertEquals(desc.value, undefined); 63 assertEquals(desc.get, undefined); 64 assertEquals(desc.set, undefined); 68 Object.defineProperty(obj2, 'p', {get: undefined}) 73 assertEquals(desc.value, undefined); [all...] |
regress-1436.js | 29 // undefined as the receiver (which for non-strict functions is 47 [2, 3].every(non_strict, undefined); 50 [2, 3].every(strict, undefined); 54 [2, 3].filter(non_strict, undefined); 57 [2, 3].filter(strict, undefined); 61 [2, 3].forEach(non_strict, undefined); 64 [2, 3].forEach(strict, undefined); 68 [2, 3].map(non_strict, undefined); 71 [2, 3].map(strict, undefined); 75 [2, 3].some(non_strict, undefined); [all...] |
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
alert_overlay.js | 45 * @param {string=} okTitle The title of the OK button. If undefined or empty, 47 * @param {string=} cancelTitle The title of the cancel button. If undefined 50 * the ok button. Can be undefined if |okTitle| is falsey. 52 * presses the cancel button. Can be undefined if |cancelTitle| is falsey. 56 if (typeof title != 'undefined') 58 $('alertOverlayTitle').hidden = typeof title == 'undefined'; 60 if (typeof message != 'undefined') 62 $('alertOverlayMessage').hidden = typeof message == 'undefined';
|
/external/chromium_org/v8/test/webkit/ |
array-type-speculation.js | 62 runWithPredicates([[true, true, "\"\\\"foo\\\"\""], [true, false, "\"\\\"foo\\\"\""], [false, true, "\"undefined\""], [false, false, "\"undefined\""]]); 63 runWithPredicates([[false, false, "\"undefined\""], [true, false, "\"\\\"foo\\\"\""], [false, true, "\"undefined\""], [true, true, "\"\\\"foo\\\"\""]]); 64 runWithPredicates([[true, true, "\"\\\"foo\\\"\""], [false, true, "\"undefined\""], [true, false, "\"\\\"foo\\\"\""], [false, false, "\"undefined\""]]); 65 runWithPredicates([[false, false, "\"undefined\""], [false, true, "\"undefined\""], [true, false, "\"\\\"foo\\\"\""], [true, true, "\"\\\"foo\\\"\""]]);
|
function-call-aliased-expected.txt | 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]
|
function-call-aliased.js | 37 shouldBe("myFunction.call()", '[this, "myFunction", undefined]'); 38 shouldBe("myFunction.call(null)", '[this, "myFunction", undefined]'); 39 shouldBe("myFunction.call(undefined)", '[this, "myFunction", undefined]'); 41 shouldBe("myFunction.aliasedCall()", '[this, "myFunction", undefined]'); 42 shouldBe("myFunction.aliasedCall(null)", '[this, "myFunction", undefined]'); 43 shouldBe("myFunction.aliasedCall(undefined)", '[this, "myFunction", undefined]');
|
js-continue-break-restrictions-expected.txt | 31 PASS if (0) { L:{ continue L; } } threw exception SyntaxError: Undefined label 'L'. 36 PASS if (0) { A:L:{ continue L; } } threw exception SyntaxError: Undefined label 'L'. 40 PASS if (0) { L:A:{ continue L; } } threw exception SyntaxError: Undefined label 'L'. 42 PASS if(0){ L:for(;;) continue L; } is undefined. 43 PASS if(0){ L:A:for(;;) continue L; } is undefined. 44 PASS if(0){ A:L:for(;;) continue L; } is undefined. 45 PASS if(0){ A:for(;;) L:continue L; } threw exception SyntaxError: Undefined label 'L'. 46 PASS if(0){ L:for(;;) A:continue L; } is undefined. 47 PASS if(0){ L:do continue L; while(0); } is undefined. 48 PASS if(0){ L:A:do continue L; while(0); } is undefined [all...] |
/external/llvm/test/Transforms/InstCombine/ |
2004-02-23-ShiftShiftOverflow.ll | 4 ; Do not fold into shr X, 34, as this uses undefined behavior! 11 ; Do not fold into shl X, 34, as this uses undefined behavior!
|
/external/valgrind/main/memcheck/tests/x86-linux/ |
scalar_supp.c | 14 // - the syscall number itself is undefined (but we know it's 16 // - each of the scalar args are undefined
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
conditionals | 32 ifndef undefined 33 @echo variable is undefined 35 @echo variable undefined is defined 46 variable is undefined 99 result += variable is undefined 100 else ifdef undefined 124 ifdef undefined 133 else ifdef undefined
|
/external/chromium_org/v8/test/mjsunit/ |
const-redecl.js | 132 TestConflict("const x = undefined", "var x"); 133 TestConflict("const x", "var x = undefined"); 134 TestConflict("const x = undefined", "var x = undefined"); 136 TestConflict("var x = undefined", "const x"); 137 TestConflict("var x", "const x = undefined"); 138 TestConflict("var x = undefined", "const x = undefined"); 140 TestConflict("const x = undefined", "var x = 0"); 141 TestConflict("const x = 0", "var x = undefined"); 233 var undefined = 1; \/\/ Should be silently ignored. variable [all...] |
arguments-opt.js | 69 assertTrue(typeof A(1) == 'undefined'); 70 assertTrue(typeof A(3,2,1) == 'undefined'); 74 assertTrue(typeof(A(-10000)) == 'undefined'); 75 assertTrue(typeof(A(-10000, 0)) == 'undefined'); 76 assertTrue(typeof(A(-1)) == 'undefined'); 77 assertTrue(typeof(A(-1, 0)) == 'undefined'); 78 assertTrue(typeof(A(10000)) == 'undefined'); 79 assertTrue(typeof(A(10000, 0)) == 'undefined'); 87 assertEquals('undefined', typeof A('1')); 88 assertEquals('undefined', typeof A('3',2,1)) [all...] |
/external/v8/test/mjsunit/ |
const-redecl.js | 132 TestConflict("const x = undefined", "var x"); 133 TestConflict("const x", "var x = undefined"); 134 TestConflict("const x = undefined", "var x = undefined"); 136 TestConflict("var x = undefined", "const x"); 137 TestConflict("var x", "const x = undefined"); 138 TestConflict("var x = undefined", "const x = undefined"); 140 TestConflict("const x = undefined", "var x = 0"); 141 TestConflict("const x = 0", "var x = undefined"); 233 var undefined = 1; \/\/ Should be silently ignored. variable [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-1436.js | 29 // undefined as the receiver (which for non-strict functions is 47 [2, 3].every(non_strict, undefined); 50 [2, 3].every(strict, undefined); 54 [2, 3].filter(non_strict, undefined); 57 [2, 3].filter(strict, undefined); 61 [2, 3].forEach(non_strict, undefined); 64 [2, 3].forEach(strict, undefined); 68 [2, 3].map(non_strict, undefined); 71 [2, 3].map(strict, undefined); 75 [2, 3].some(non_strict, undefined); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
WebKitCSSMatrix.idl | 58 [RaisesException] void setMatrixValue([Default=Undefined] optional DOMString string); 61 [Immutable] WebKitCSSMatrix multiply([Default=Undefined] optional WebKitCSSMatrix secondMatrix); 68 [Immutable] WebKitCSSMatrix translate([Default=Undefined] optional double x, 69 [Default=Undefined] optional double y, 70 [Default=Undefined] optional double z); 75 [Immutable] WebKitCSSMatrix scale([Default=Undefined] optional double scaleX, 76 [Default=Undefined] optional double scaleY, 77 [Default=Undefined] optional double scaleZ); 82 [Immutable] WebKitCSSMatrix rotate([Default=Undefined] optional double rotX, 83 [Default=Undefined] optional double rotY [all...] |
/external/chromium-trace/trace-viewer/src/base/ |
iteration_helpers_test.js | 24 assertTrue(comparePossiblyUndefinedValues(0, undefined, cmp) < 0); 25 assertTrue(comparePossiblyUndefinedValues(undefined, 0, cmp) > 0); 26 assertTrue(comparePossiblyUndefinedValues(undefined, undefined, cmp) == 0);
|
/external/chromium-trace/trace-viewer/src/tracing/trace_model/ |
async_slice.js | 43 id: undefined, 45 startThread: undefined, 47 endThread: undefined, 49 subSlices: undefined
|
/external/chromium_org/content/test/data/media/webui/ |
manager_test.html | 31 assertTrue(undefined !== window.pm.players_['someid']); 39 assertTrue(undefined !== window.pm.players_['someid']); 46 assertTrue(undefined !== window.pm.players_['someid']); 48 assertTrue(undefined === window.pm.players_['someid']);
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
DOMContextMenuEvent.html | 27 if ((typeof event.cancelBubble) != "undefined")
30 if ((typeof event.preventDefault) != "undefined")
33 if ((typeof event.returnValue) != "undefined")
36 if ((typeof event.stopPropagation) != "undefined")
|
/external/chromium_org/third_party/WebKit/ManualTests/inspector/ |
console-dir.html | 7 console.dir(undefined); 17 console.dirxml(undefined); 28 console.log("%o %O", undefined, undefined);
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Bindings/ |
undefined-first-child.html | 9 description: "This benchmark covers undefined DOM attributes that return a null.",
|
undefined-id-getter.html | 9 description: "This benchmark covers undefined DOM attributes that return an empty String.",
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
CustomEvent.idl | 31 [Custom] void initCustomEvent([Default=Undefined] optional DOMString typeArg, 32 [Default=Undefined] optional boolean canBubbleArg, 33 [Default=Undefined] optional boolean cancelableArg, 34 [Default=Undefined] optional any detailArg);
|
/external/chromium_org/third_party/WebKit/Source/core/plugins/ |
PluginArray.idl | 25 getter Plugin item([Default=Undefined] optional unsigned long index); 26 Plugin namedItem([Default=Undefined] optional DOMString name); 27 [NotEnumerable, ImplementedAs=namedItem] getter Plugin ([Default=Undefined] optional DOMString name); 28 void refresh([Default=Undefined] optional boolean reload);
|
/external/clang/test/Analysis/ |
PR7218.c | 5 return buf[1]; // expected-warning {{Undefined or garbage value returned to caller}}
|