/external/v8/test/mjsunit/ |
regexp-loop-capture.js | 28 assertEquals(["abc",undefined,undefined,"c"], /(?:(a)|(b)|(c))+/.exec("abc")); 29 assertEquals(["ab",undefined], /(?:(a)|b)*/.exec("ab"));
|
object-define-property.js | 42 // Check that an exception is thrown when undefined is passed as object. 45 Object.defineProperty(undefined, undefined, undefined); 55 Object.defineProperty(0, "foo", undefined); 114 // Check that we can't add property with undefined attributes. 116 Object.defineProperty(obj1, "foo", undefined); 126 // foo should be undefined as it has no get, set or value 127 assertEquals(undefined, obj1.foo); 135 assertEquals(desc.get, undefined); [all...] |
array-elements-from-array-prototype.js | 57 assertEquals(undefined, a.shift(), 'hole should be returned as undefined') 82 assertEquals(undefined, a[6]) 102 assertEquals(undefined, a[6]) 142 assertEquals(undefined, a0[2]) 152 assertEquals(undefined, a0[5]) 163 var result = a1.splice(4, 0, undefined) 170 assertEquals(undefined, a1[2]) 175 // Now owned undefined resides at 4 and rest is shifted right by one 178 assertEquals(undefined, a1[4] [all...] |
array-elements-from-object-prototype.js | 57 assertEquals(undefined, a.shift(), 'hole should be returned as undefined') 82 assertEquals(undefined, a[6]) 102 assertEquals(undefined, a[6]) 142 assertEquals(undefined, a0[2]) 152 assertEquals(undefined, a0[5]) 163 var result = a1.splice(4, 0, undefined) 170 assertEquals(undefined, a1[2]) 175 // Now owned undefined resides at 4 and rest is shifted right by one 178 assertEquals(undefined, a1[4] [all...] |
/external/v8/test/mjsunit/regress/ |
regress-969.js | 53 assertEquals('undefined', test0()); 60 assertEquals('undefined', test1(), 'test1 after'); 67 assertEquals('undefined', test2(), 'test2 after'); 73 assertEquals('undefined', test3(), 'test3 after'); 82 assertEquals('undefined', test4()); 88 assertEquals('undefined', test5()); 94 assertEquals('undefined', test6()); 100 assertEquals('undefined', test7()); 109 assertEquals('undefined', test8()); 115 assertEquals('undefined', test9()) [all...] |
regress-799761.js | 48 // their value is undefined. 58 assertTrue(typeof x == 'undefined'); 62 // const variables may be initialized to undefined. 65 const x = undefined; 68 assertTrue(typeof x == 'undefined');
|
/external/valgrind/main/memcheck/tests/s390x/ |
cdsg.c | 36 // op1 undefined 47 // op2 undefined 58 // op3 undefined
|
/external/chromium_org/v8/test/mjsunit/ |
object-define-property.js | 42 // Check that an exception is thrown when undefined is passed as object. 45 Object.defineProperty(undefined, undefined, undefined); 55 Object.defineProperty(0, "foo", undefined); 114 // Check that we can't add property with undefined attributes. 116 Object.defineProperty(obj1, "foo", undefined); 126 // foo should be undefined as it has no get, set or value 127 assertEquals(undefined, obj1.foo); 135 assertEquals(desc.get, undefined); [all...] |
array-elements-from-array-prototype.js | 57 assertEquals(undefined, a.shift(), 'hole should be returned as undefined') 82 assertEquals(undefined, a[6]) 102 assertEquals(undefined, a[6]) 142 assertEquals(undefined, a0[2]) 152 assertEquals(undefined, a0[5]) 163 var result = a1.splice(4, 0, undefined) 170 assertEquals(undefined, a1[2]) 175 // Now owned undefined resides at 4 and rest is shifted right by one 178 assertEquals(undefined, a1[4] [all...] |
array-elements-from-object-prototype.js | 57 assertEquals(undefined, a.shift(), 'hole should be returned as undefined') 82 assertEquals(undefined, a[6]) 102 assertEquals(undefined, a[6]) 142 assertEquals(undefined, a0[2]) 152 assertEquals(undefined, a0[5]) 163 var result = a1.splice(4, 0, undefined) 170 assertEquals(undefined, a1[2]) 175 // Now owned undefined resides at 4 and rest is shifted right by one 178 assertEquals(undefined, a1[4] [all...] |
/external/llvm/test/MC/Disassembler/AArch64/ |
basic-a64-unpredictable.txt | 9 #CHECK: warning: potentially undefined instruction encoding 14 #CHECK: warning: potentially undefined instruction encoding 22 #CHECK: warning: potentially undefined instruction encoding 26 #CHECK: warning: potentially undefined instruction encoding 34 #CHECK: warning: potentially undefined instruction encoding 38 #CHECK: warning: potentially undefined instruction encoding 48 # CHECK: warning: potentially undefined instruction encoding 53 # CHECK: warning: potentially undefined instruction encoding 58 # CHECK: warning: potentially undefined instruction encoding 69 # CHECK: warning: potentially undefined instruction encodin [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSPrimitiveValue.idl | 57 [RaisesException] void setFloatValue([Default=Undefined] optional unsigned short unitType, 58 [Default=Undefined] optional float floatValue); 59 [RaisesException] float getFloatValue([Default=Undefined] optional unsigned short unitType); 60 [RaisesException] void setStringValue([Default=Undefined] optional unsigned short stringType, 61 [Default=Undefined] optional DOMString stringValue);
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XSLTProcessor.idl | 39 void importStylesheet([Default=Undefined] optional Node stylesheet); 40 [CustomElementCallbacks] DocumentFragment transformToFragment([Default=Undefined] optional Node source, [Default=Undefined] optional Document docVal); 41 [CustomElementCallbacks] Document transformToDocument([Default=Undefined] optional Node source); 44 [Custom, TreatReturnedNullStringAs=Undefined] DOMString getParameter(DOMString namespaceURI, DOMString localName);
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBObjectStore.idl | 34 [CallWith=ScriptState, RaisesException] IDBRequest put(any value, [Default=Undefined] optional any key); 35 [CallWith=ScriptState, RaisesException] IDBRequest add(any value, [Default=Undefined] optional any key); 39 [CallWith=ExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, [Default=NullString] optional DOMString direction); 40 [CallWith=ExecutionContext, RaisesException, RuntimeEnabled=IndexedDBExperimental] IDBRequest openKeyCursor([Default=Undefined] optional any range, [Default=NullString] optional DOMString direction); 46 [CallWith=ExecutionContext, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
/external/chromium_org/v8/test/mjsunit/bugs/ |
bug-proto.js | 42 assertSame(undefined, Realm.eval(realmB, "this.x")); 43 assertSame(undefined, Realm.eval(realmB, "Realm.shared.x")); 47 assertSame(undefined, this.y); 57 assertSame(undefined, Realm.eval(realmB, "Realm.shared.__proto__")); 61 assertSame(undefined, o.c);
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
unary-add.js | 34 assertEquals(NaN, +undefined); 41 assertEquals(1, eval("+undefined; 1")); 50 assertEquals(1, (+undefined) ? 2 : 1); 57 assertEquals(2, +undefined || 2); 66 assertEquals(NaN, +undefined && 2);
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-799761.js | 48 // their value is undefined. 58 assertTrue(typeof x == 'undefined'); 62 // const variables may be initialized to undefined. 65 const x = undefined; 68 assertTrue(typeof x == 'undefined');
|
/external/chromium_org/v8/test/webkit/ |
cached-call-uninitialized-arguments.js | 25 "This test checks that uninitialized parameters for cached call functions correctly defaults to undefined." 42 testFailed(_a + " should be undefined. Threw exception " + exception); 43 else if (typeof _av == "undefined") 44 testPassed(_a + " is undefined."); 46 testFailed(_a + " should be undefined. Was " + _av);
|
equality-expected.txt | 44 PASS 0 == undefined is false 64 PASS 1 == undefined is false 84 PASS 0.1 == undefined is false 104 PASS 2 == undefined is false 124 PASS 3 == undefined is false 144 PASS 4 == undefined is false 164 PASS 5 == undefined is false 184 PASS 6 == undefined is false 204 PASS 7 == undefined is false 224 PASS -0 == undefined is fals [all...] |
regexp-compile.js | 51 // It's OK to supply a second argument, as long as the argument is "undefined". 52 re.compile(re, undefined); 57 re.compile(undefined); 58 shouldBe("re.toString()", "'/undefined/'"); 66 re.compile("z", undefined);
|
array-filter.js | 27 return typeof element === "undefined"; 70 shouldBe("[undefined].filter(passUndefined)", "[undefined]"); 77 shouldBe("toObject([undefined]).filter(passUndefined)", "[undefined]"); 84 shouldBe("reverseInsertionOrder([undefined]).filter(passUndefined)", "[undefined]"); 91 shouldBe("reverseInsertionOrder([undefined]).filter(filterLog(passUndefined))", "[undefined]"); 95 shouldBe("([undefined]).filter(filterLog(passUndefined))", "[undefined]") [all...] |
/external/chromium_org/v8/test/webkit/fast/regex/ |
ecma-regex-examples-expected.txt | 30 PASS regex02.exec("abc") is ["abc", "a", "a", undefined, "bc", undefined, "bc"] 35 PASS regex07.exec("zaacbbbcac") is ["zaacbbbcac", "z", "ac", "a", undefined, "c"] 36 PASS regex08.exec("b") is ["", undefined] 40 PASS regex12.exec("baaabaac") is ["baaabaac", "ba", undefined, "abaac"]
|
ecma-regex-examples.js | 32 shouldBe('regex02.exec("abc")', '["abc", "a", "a", undefined, "bc", undefined, "bc"]'); 47 shouldBe('regex07.exec("zaacbbbcac")', '["zaacbbbcac", "z", "ac", "a", undefined, "c"]'); 50 shouldBe('regex08.exec("b")', '["", undefined]'); 62 shouldBe('regex12.exec("baaabaac")', '["baaabaac", "ba", undefined, "abaac"]');
|
/external/v8/test/mjsunit/compiler/ |
unary-add.js | 34 assertEquals(NaN, +undefined); 41 assertEquals(1, eval("+undefined; 1")); 50 assertEquals(1, (+undefined) ? 2 : 1); 57 assertEquals(2, +undefined || 2); 66 assertEquals(NaN, +undefined && 2);
|
/external/chromium_org/v8/test/webkit/fast/js/ |
Object-defineProperty.js | 30 shouldBe("JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {get:undefined}), 'foo'))", 56 shouldThrow("Object.defineProperty({}, 'foo', {get:undefined, value:true}).foo"); 136 // Either accessor may be omitted or replaced with undefined, or both may be replaced with undefined. 139 shouldBe("var o = Object.defineProperty({}, 'foo', {get:undefined, set:function(x){this.result = x;}}); o.foo", 'undefined') 140 shouldBe("var o = Object.defineProperty({}, 'foo', {get:undefined, set:function(x){this.result = x;}}); o.foo = 42; o.result;", '42'); 141 shouldBe("var o = Object.defineProperty({}, 'foo', {set:function(x){this.result = x;}}); o.foo", 'undefined') 143 shouldBe("var o = Object.defineProperty({}, 'foo', {get:function(){return 42;}, set:undefined}); o.foo", '42') 144 shouldBe("var o = Object.defineProperty({}, 'foo', {get:function(){return 42;}, set:undefined}); o.foo = 42; o.result;", 'undefined') [all...] |