Searched refs:shouldBeUndefined (Results 1 – 24 of 24) sorted by relevance
/external/v8/test/webkit/ |
D | js-continue-break-restrictions.js | 41 shouldBeUndefined("if(0){ L:for(;;) continue L; }") 42 shouldBeUndefined("if(0){ L:A:for(;;) continue L; }") 43 shouldBeUndefined("if(0){ A:L:for(;;) continue L; }") 45 shouldBeUndefined("if(0){ L:for(;;) A:continue L; }") 47 shouldBeUndefined("if(0){ L:do continue L; while(0); }") 48 shouldBeUndefined("if(0){ L:A:do continue L; while(0); }") 49 shouldBeUndefined("if(0){ A:L:do continue L; while(0);}") 51 shouldBeUndefined("if(0){ L:do A:continue L; while(0); }") 54 shouldBeUndefined("if(0){ L:while(0) continue L; }") 55 shouldBeUndefined("if(0){ L:A:while(0) continue L; }") [all …]
|
D | cached-call-uninitialized-arguments.js | 32 function shouldBeUndefined(_a) { function 49 shouldBeUndefined("arg4"); 50 shouldBeUndefined("arg5"); 51 shouldBeUndefined("arg6");
|
D | parser-xml-close-comment.js | 31 shouldBeUndefined("-->"); 32 shouldBeUndefined("/**/-->"); 33 shouldBeUndefined("/*\n*/-->");
|
D | for-in-exeception.js | 44 shouldBeUndefined("test(throwUndefinedException)"); 45 shouldBeUndefined("test(throwNullException)");
|
D | JSON-stringify-replacer.js | 70 shouldBeUndefined("JSON.stringify(object, returnUndefined)"); 71 shouldBeUndefined("JSON.stringify(array, returnUndefined)");
|
D | property-getters-and-setters.js | 49 shouldBeUndefined("o4.x"); 80 shouldBeUndefined("o7.x")
|
D | multiline-comment-newline.js | 28 var shouldBeUndefined = (function(){ function
|
D | string-index-overflow.js | 28 shouldBeUndefined('"x"[10]');
|
D | function-declaration.js | 28 shouldBeUndefined("eval('function f(){return true;}')");
|
D | regexp-literals-arent-constants.js | 57 shouldBeUndefined("returnRegExpLiteral().someAddedProperty");
|
D | prototypes.js | 90 shouldBeUndefined("var o = {}; o.__proto__ = { x:true }; o.x");
|
D | dictionary-prototype-caching.js | 42 shouldBeUndefined("protoTest(o)");
|
D | preventExtensions.js | 102 shouldBeUndefined('var arr = Object.preventExtensions([]); arr[0] = 42; arr[0]');
|
D | multiline-comment-newline-expected.txt | 29 PASS shouldBeUndefined is undefined
|
/external/v8/test/webkit/fast/js/ |
D | basic-strict-mode.js | 67 shouldBeUndefined("testThisDotAccess.call(true)"); 68 shouldBeUndefined("testThisDotAccess.call(false)"); 69 shouldBeUndefined("testThisDotAccess.call(1)"); 73 shouldBeUndefined("testThisBracketAccess.call(true, 'length')"); 74 shouldBeUndefined("testThisBracketAccess.call(false, 'length')"); 75 shouldBeUndefined("testThisBracketAccess.call(1, 'length')"); 76 shouldBeUndefined("Function('\"use strict\"; return this;')()"); 199 shouldBeUndefined("(function f(arg){'use strict'; return Object.getOwnPropertyDescriptor(f.__proto_… 200 shouldBeUndefined("(function f(arg){'use strict'; return Object.getOwnPropertyDescriptor(f.__proto_… 201 shouldBeUndefined("(function f(arg){'use strict'; return Object.getOwnPropertyDescriptor(arguments,… [all …]
|
D | Object-defineProperty.js | 90 shouldBeUndefined("Object.defineProperty(Object.defineProperty({}, 'foo', {set: setter, configurabl… 97 shouldBeUndefined("Object.defineProperty(Object.defineProperty({}, 'foo', {get: getter, configurabl… 123 shouldBeUndefined("var o = Object.defineProperty({}, 'foo', {get: function() { return 1; }, configu… 207 shouldBeUndefined("var a = Object.defineProperty([], '0', {set: undefined}); a[0] = 42; a[0];"); 230 shouldBeUndefined("Object.getOwnPropertyDescriptor(anObj, 'slot5')");
|
D | JSON-parse-reviver.js | 77 shouldBeUndefined("value"); 93 shouldBeUndefined("value"); 159 shouldBeUndefined("value");
|
D | arguments.js | 605 shouldBeUndefined("shadowedArgumentsCallee([])"); 678 shouldBeUndefined(String( Object.getOwnPropertyDescriptor(arguments, 1) ));
|
/external/v8/test/webkit/fast/js/kde/ |
D | Array.js | 34 shouldBeUndefined("(new Array(11, 22))[3]"); 67 shouldBeUndefined("var a = [11, 22]; a.length = 1; a[1];"); 87 shouldBeUndefined("(new Array('a'))[1]");
|
D | assignments.js | 28 shouldBeUndefined("var i; i");
|
D | object_prototype.js | 80 shouldBeUndefined("Class1.prototype.prototype");
|
D | math.js | 102 shouldBeUndefined("my.v");
|
D | operators.js | 495 shouldBeUndefined("void 1");
|
/external/v8/test/webkit/resources/ |
D | standalone-pre.js | 136 function shouldBeUndefined(_a) function
|