/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/ |
DeviceMotionEvent.idl | 33 [Custom] void initDeviceMotionEvent([Default=Undefined] optional DOMString type, 34 [Default=Undefined] optional boolean bubbles, 35 [Default=Undefined] optional boolean cancelable, 36 [Default=Undefined] optional Acceleration acceleration, 37 [Default=Undefined] optional Acceleration accelerationIncludingGravity, 38 [Default=Undefined] optional RotationRate rotationRate, 39 [Default=Undefined] optional double interval);
|
DeviceOrientationEvent.idl | 31 [Custom] void initDeviceOrientationEvent([Default=Undefined] optional DOMString type, 32 [Default=Undefined] optional boolean bubbles, 33 [Default=Undefined] optional boolean cancelable, 34 [Default=Undefined] optional double alpha, 35 [Default=Undefined] optional double beta, 36 [Default=Undefined] optional double gamma, 37 [Default=Undefined] optional boolean absolute);
|
/external/chromium_org/v8/test/webkit/ |
sparse-array-expected.txt | 29 PASS array[0] is undefined 30 PASS array[49999] is undefined 32 PASS array[50001] is undefined 34 PASS array[49999] is undefined 36 PASS array[50001] is undefined 38 PASS array[49999] is undefined 40 PASS array[50001] is undefined
|
sparse-array.js | 32 shouldBe('array[0]', 'undefined'); 33 shouldBe('array[49999]', 'undefined'); 35 shouldBe('array[50001]', 'undefined'); 38 shouldBe('array[49999]', 'undefined'); 40 shouldBe('array[50001]', 'undefined'); 46 shouldBe('array[49999]', 'undefined'); 48 shouldBe('array[50001]', 'undefined');
|
dfg-convert-this-dom-window.js | 25 "This tests that we can correctly call Function.prototype.call in the DFG, but more precisely, that we give the correct this object in case it is undefined" 38 shouldBe("myFunction.call()", '[this, "myFunction", undefined]'); 39 shouldBe("myFunction.call(null)", '[this, "myFunction", undefined]'); 40 shouldBe("myFunction.call(undefined)", '[this, "myFunction", undefined]'); 42 shouldBe("myFunction.aliasedCall()", '[this, "myFunction", undefined]'); 43 shouldBe("myFunction.aliasedCall(null)", '[this, "myFunction", undefined]'); 44 shouldBe("myFunction.aliasedCall(undefined)", '[this, "myFunction", undefined]');
|
regexp-zero-length-alternatives.js | 60 shouldBe('emptyStr.match(re4)', '["", undefined]'); 61 shouldBe('s1.match(re4)', '["", undefined]'); 67 shouldBe('emptyStr.match(re5)', '["", undefined]'); 68 shouldBe('s1.match(re5)', '["", undefined]'); 74 shouldBe('emptyStr.match(re6)', '["", undefined]'); 75 shouldBe('s1.match(re6)', '["", undefined]'); 123 shouldBe('emptyStr.match(re13)', '["", undefined]'); 124 shouldBe('s1.match(re13)', '["", undefined]'); 125 shouldBe('s2.match(re13)', '["", undefined]'); 126 shouldBe('s3.match(re13)', '["", undefined]'); [all...] |
/external/chromium_org/v8/test/mjsunit/ |
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; 67 // Find undefined, not holes. 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)) [all...] |
array-concat.js | 45 assertEquals("undefined", typeof(c[pos - 1])); 64 assertEquals("undefined", typeof(c[pos - 1])); 70 array_proto["123"] = undefined; 71 assertEquals("undefined", typeof(a[123])); 90 assertEquals("undefined", typeof(c.ben)); 93 array_proto.moe = undefined; 94 assertEquals("undefined", typeof(c.moe)); 99 assertEquals("undefined", typeof(a[0xffffffff])); 101 assertEquals("undefined", typeof(c[-1])); 102 assertEquals("undefined", typeof(c[0xffffffff])) [all...] |
object-prevent-extensions.js | 39 assertEquals(undefined, obj1.x); 43 assertEquals(undefined, obj1[1]); 57 // obj2.y should still be undefined. 58 assertEquals(undefined, obj2.y); 64 // obj2.y should still be undefined. 65 assertEquals(undefined, obj2.y); 74 // obj2.y should still be undefined. 75 assertEquals(undefined, obj2.y); 79 assertEquals(undefined, obj2[1]); 116 assertEquals(undefined, foo.x) [all...] |
/external/v8/test/mjsunit/ |
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; 67 // Find undefined, not holes. 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)) [all...] |
regexp-capture.js | 31 assertEquals(["y", undefined], /(x)?\1y/.exec("y")); 32 assertEquals(["y", undefined], /(x)?y/.exec("y")); 33 assertEquals(["y", undefined], "y".match(/(x)?\1y/)); 34 assertEquals(["y", undefined], "y".match(/(x)?y/)); 36 assertEquals(["", undefined, ""], "y".split(/(x)?\1y/)); 37 assertEquals(["", undefined, ""], "y".split(/(x)?y/)); 41 assertEquals("undefined", "y".replace(/(x)?\1y/, 45 assertEquals("undefined", "y".replace(/(x)?y/, 49 assertEquals("undefined", "y".replace(/(x)?y/,
|
array-concat.js | 45 assertEquals("undefined", typeof(c[pos - 1])); 64 assertEquals("undefined", typeof(c[pos - 1])); 70 array_proto["123"] = undefined; 71 assertEquals("undefined", typeof(a[123])); 90 assertEquals("undefined", typeof(c.ben)); 93 array_proto.moe = undefined; 94 assertEquals("undefined", typeof(c.moe)); 99 assertEquals("undefined", typeof(a[0xffffffff])); 101 assertEquals("undefined", typeof(c[-1])); 102 assertEquals("undefined", typeof(c[0xffffffff])) [all...] |
object-prevent-extensions.js | 39 assertEquals(undefined, obj1.x); 43 assertEquals(undefined, obj1[1]); 57 // obj2.y should still be undefined. 58 assertEquals(undefined, obj2.y); 64 // obj2.y should still be undefined. 65 assertEquals(undefined, obj2.y); 74 // obj2.y should still be undefined. 75 assertEquals(undefined, obj2.y); 79 assertEquals(undefined, obj2[1]); 116 assertEquals(undefined, foo.x) [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/wave/ |
prettyload.js | 39 this.frames = frames !== undefined ? frames : ELLIPSIS; 40 this.backgroundColor = backgroundColor !== undefined ? backgroundColor : null; 42 successBackgroundColor !== undefined ? successBackgroundColor : null; 44 timeoutBackgroundColor !== undefined ? timeoutBackgroundColor : null; 45 this.frameRate = frameRate !== undefined ? frameRate : 12; 46 this.minDuration = minDuration !== undefined ? minDuration : 1; 47 this.maxDuration = maxDuration !== undefined ? maxDuration : 10; 62 timeoutFrame !== undefined ? timeoutFrame : '', TIMEOUT_BACKGROUND_COLOR 95 successFrame !== undefined ? successFrame : '', SUCCESS_BACKGROUND_COLOR
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-crbug-162085.js | 34 assertEquals(undefined, a[1]); 35 assertEquals(undefined, a[2]); 36 assertEquals(undefined, a[3]); 48 assertEquals(undefined, a2[1]); 49 assertEquals(undefined, a2[2]); 50 assertEquals(undefined, a2[3]); 69 assertEquals(undefined, a4[1]); 70 assertEquals(undefined, a4[2]); 71 assertEquals(undefined, a4[3]);
|
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...] |
/external/chromium_org/v8/test/webkit/fast/js/ |
object-prototype-properties.js | 28 //ES 5.1 allows for Object.prototype.toString being called with undefined/null. 29 shouldBe("Object.prototype.toString.call(undefined)", '"[object Undefined]"'); 32 // These calls pass undefined as this value, and as such should throw in toObject. 33 shouldThrow("Object.prototype.toLocaleString.call(undefined)"); 34 shouldThrow("Object.prototype.valueOf.call(undefined)"); 35 shouldThrow("Object.prototype.hasOwnProperty.call(undefined, 'hasOwnProperty')"); 36 shouldThrow("Object.prototype.propertyIsEnumerable.call(undefined, 'propertyIsEnumerable')"); 37 shouldThrow("Object.prototype.isPrototypeOf.call(undefined, this)");
|
regexp-non-capturing-groups-expected.txt | 30 PASS /(x)?\1y/.exec("y") is ["y", undefined] 31 PASS /(x)?y/.exec("y") is ["y", undefined] 32 PASS "y".match(/(x)?\1y/) is ["y", undefined] 33 PASS "y".match(/(x)?y/) is ["y", undefined] 35 PASS "y".split(/(x)?\1y/) is ["", undefined, ""] 36 PASS "y".split(/(x)?y/) is ["", undefined, ""] 40 PASS "y".replace(/(x)?\1y/, function($0, $1){ return String($1); }) is "undefined" 41 PASS "y".replace(/(x)?y/, function($0, $1){ return String($1); }) is "undefined" 42 PASS "y".replace(/(x)?y/, function($0, $1){ return $1; }) is "undefined"
|
regexp-non-capturing-groups.js | 30 shouldBe('/(x)?\\1y/.exec("y")', '["y", undefined]'); 31 shouldBe('/(x)?y/.exec("y")', '["y", undefined]'); 32 shouldBe('"y".match(/(x)?\\1y/)', '["y", undefined]'); 33 shouldBe('"y".match(/(x)?y/)', '["y", undefined]'); 35 shouldBe('"y".split(/(x)?\\1y/)', '["", undefined, ""]'); 36 shouldBe('"y".split(/(x)?y/)', '["", undefined, ""]'); 40 shouldBe('"y".replace(/(x)?\\1y/, function($0, $1){ return String($1); })', '"undefined"'); 41 shouldBe('"y".replace(/(x)?y/, function($0, $1){ return String($1); })', '"undefined"'); 42 shouldBe('"y".replace(/(x)?y/, function($0, $1){ return $1; })', '"undefined"');
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
CompositionEvent.idl | 32 void initCompositionEvent([Default=Undefined] optional DOMString typeArg, 33 [Default=Undefined] optional boolean canBubbleArg, 34 [Default=Undefined] optional boolean cancelableArg, 35 [Default=Undefined] optional Window viewArg, 36 [Default=Undefined] optional DOMString dataArg);
|
HashChangeEvent.idl | 24 void initHashChangeEvent([Default=Undefined] optional DOMString type, 25 [Default=Undefined] optional boolean canBubble, 26 [Default=Undefined] optional boolean cancelable, 27 [Default=Undefined] optional DOMString oldURL, 28 [Default=Undefined] optional DOMString newURL);
|
TextEvent.idl | 31 void initTextEvent([Default=Undefined] optional DOMString typeArg, 32 [Default=Undefined] optional boolean canBubbleArg, 33 [Default=Undefined] optional boolean cancelableArg, 34 [Default=Undefined] optional Window viewArg, 35 [Default=Undefined] optional DOMString dataArg);
|
UIEvent.idl | 26 void initUIEvent([Default=Undefined] optional DOMString type, 27 [Default=Undefined] optional boolean canBubble, 28 [Default=Undefined] optional boolean cancelable, 29 [Default=Undefined] optional Window view, 30 [Default=Undefined] optional long detail);
|
/external/clang/test/SemaObjC/ |
objc-literal-comparison.m | 39 if (obj == @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 40 if (obj != @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 41 if (@"" == obj) return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 42 if (@"" == @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 44 if (@[] == obj) return; // expected-warning{{direct comparison of an array literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 45 if (@{} == obj) return; // expected-warning{{direct comparison of a dictionary literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 46 if (@12 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 47 if (@1.0 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 48 if (@__objc_yes == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 49 if (@(1+1) == obj) return; // expected-warning{{direct comparison of a boxed expression has undefined behavior}} expected-note{{use 'isEqual:' instead} [all...] |
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
origin | 9 'undefined' never defined 23 auto_var = undefined CC MAKETEST MAKE foo CFLAGS WHITE @ 27 @echo $(origin undefined) 38 'undefined default environment default file command line override automatic 39 undefined
|