/external/chromium_org/v8/test/mjsunit/harmony/ |
iteration-semantics.js | 184 assertEquals([undefined, 1, 2, 3], 188 // A missing "done" is the same as undefined, which 196 assertEquals([undefined, undefined, undefined], 207 // Null and undefined do not cause an error. 209 assertEquals(0, fold(sum, 0, unreachable(undefined)));
|
block-conflicts.js | 82 "let x = undefined", 88 "const x = undefined", 95 "var x = undefined",
|
proxies-for.js | 69 default: return undefined; 106 return k == "0" || k == "a" ? {configurable: true} : undefined 114 return k == "null" || k == "a" ? {configurable: true} : undefined 126 default: return undefined;
|
proxies-function.js | 34 if (handler.fix === undefined) handler.fix = function() { return {} } 44 get : function(r, n) { return n == "length" ? 2 : undefined } 57 // assertSame(isStrict ? undefined : global_object, receiver) 71 // assertSame(isStrict ? undefined : global_object, receiver) 88 assertEquals(42, f.call(undefined, 33, 9)) 89 assertSame(isStrict ? undefined : global_object, receiver) 195 assertSame(isStrict ? undefined : global_object, receiver) 331 return undefined; 370 assertEquals(undefined, receiver) 376 assertEquals(undefined, receiver [all...] |
string-contains.js | 61 assertThrows("String.prototype.contains.call(undefined, undefined)", TypeError); 65 assertThrows("String.prototype.contains.apply(undefined, [undefined])", TypeError);
|
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
box2d.js | 23 F.NVector=function(y){if(y===G)y=0;for(var w=Array(y||0),A=0;A<y;++A)w[A]=0;return w};F.is=function(y,w){if(y===null)return false;if(w instanceof Function&&y instanceof w)return true;if(y.constructor.__implements!=G&&y.constructor.__implements[w])return true;return false};F.parseUInt=function(y){return Math.abs(parseInt(y))}})(Box2D);var Vector=Array,Vector_a2j_Number=Box2D.NVector;if(typeof Box2D==="undefined")Box2D={};if(typeof Box2D.Collision==="undefined")Box2D.Collision={}; 24 if(typeof Box2D.Collision.Shapes==="undefined")Box2D.Collision.Shapes={};if(typeof Box2D.Common==="undefined")Box2D.Common={};if(typeof Box2D.Common.Math==="undefined")Box2D.Common.Math={};if(typeof Box2D.Dynamics==="undefined")Box2D.Dynamics={};if(typeof Box2D.Dynamics.Contacts==="undefined")Box2D.Dynamics.Contacts={};if(typeof Box2D.Dynamics.Controllers==="undefined")Box2D.Dynamics.Controllers={};if(typeof Box2D.Dynamics.Joints==="undefined")Box2D.Dynamics.Joints={}; 57 new Vector_a2j_Number;this.lowerValues[0]=0;this.lowerValues[1]=0;this.upperValues=new Vector_a2j_Number;this.upperValues[0]=0;this.upperValues[1]=0};M.b2Collision=function(){};M.ClipSegmentToLine=function(b,e,f,m){if(m===undefined)m=0;var r,s=0;r=e[0];var v=r.v;r=e[1];var t=r.v,x=f.x*v.x+f.y*v.y-m;r=f.x*t.x+f.y*t.y-m;x<=0&&b[s+ (…) [all...] |
/external/chromium_org/chrome/third_party/mock4js/ |
mock4js.js | 43 object.NOT_UNDEFINED = new MatchAnythingBut(new MatchExactly(undefined));
452 if(typeof arguments[i] != 'object' && arguments[i].invoke === undefined) {
487 if(typeof arguments[i] != 'object' && arguments[i].invoke === undefined) {
500 if(mockedType === undefined || mockedType.prototype === undefined) {
571 if(arguments[i] !== null && arguments[i] !== undefined && arguments[i].argumentMatches) {
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
ScriptSnippetModel.js | 257 DebuggerAgent.runScript(scriptId, currentExecutionContext ? currentExecutionContext.id : undefined, "console", false, runCallback.bind(this)); 283 var message = WebInspector.ConsoleMessage.create(WebInspector.ConsoleMessage.MessageSource.JS, level, "", undefined, undefined, undefined, undefined, undefined, [result]);
|
DebuggerModel.js | 231 DebuggerAgent.setOverlayMessage(undefined, callback.bind(this)); 240 DebuggerAgent.setOverlayMessage(undefined, callback.bind(this)); 249 DebuggerAgent.setOverlayMessage(undefined, callback.bind(this)); 258 DebuggerAgent.setOverlayMessage(undefined, callback.bind(this)); 307 DebuggerAgent.setBreakpointByUrl(lineNumber, url, undefined, columnNumber, condition, undefined, didSetBreakpoint.bind(this)); 460 * @param {!Object|undefined} auxData 589 * @return {!DebuggerAgent.CallFrameId|undefined} 594 return callFrame ? callFrame.id : undefined; 680 * @param {function(!WebInspector.UILocation):(boolean|undefined)} updateDelegat [all...] |
ImageView.js | 110 dd.appendChild(WebInspector.linkifyURLAsNode(this.resource.url, undefined, undefined, externalResource));
|
/external/chromium_org/v8/test/mjsunit/bugs/ |
bug-2615.js | 33 assertEquals(undefined, a[0xfffffffe]); 64 assertEquals([10, undefined, undefined], a);
|
/external/chromium_org/v8/test/mjsunit/regress/ |
poly_count_operation.js | 97 v = undefined; 124 v = undefined; 152 v = undefined;
|
regress-convert-hole.js | 52 assertEquals(undefined, a1[2]); 80 f_call(test_arg(undefined), false, false, 2); 109 assertEquals(1, a2[undefined]);
|
regress-binop.js | 103 test(minus,check_minus,1,undefined); 151 assertEquals(t1(1,undefined), 1-NaN); 165 assertEquals(t2(undefined,2), NaN/2); 181 assertEquals("undefined", string_add("", 1));
|
/external/chromium_org/v8/test/mjsunit/ |
strict-mode.js | 224 CheckStrictMode("function strict() { eval = undefined; }", SyntaxError); 225 CheckStrictMode("function strict() { arguments = undefined; }", SyntaxError); 226 CheckStrictMode("function strict() { print(eval = undefined); }", SyntaxError); 227 CheckStrictMode("function strict() { print(arguments = undefined); }", 229 CheckStrictMode("function strict() { var x = eval = undefined; }", SyntaxError); 230 CheckStrictMode("function strict() { var x = arguments = undefined; }", 234 CheckStrictMode("function strict() { eval *= undefined; }", SyntaxError); 235 CheckStrictMode("function strict() { arguments /= undefined; }", SyntaxError); 236 CheckStrictMode("function strict() { print(eval %= undefined); }", SyntaxError); 237 CheckStrictMode("function strict() { print(arguments %= undefined); }", [all...] |
array-functions-prototype.js | 72 // non-arrays. Therefore, array[0] is undefined in Spidermonkey and 105 // Again Spidermonkey is inconsistent. array[2] is undefined 132 // Again Spidermonkey is inconsistent. array[0] is undefined 154 // undefined instead of 'one'.
|
math-imul.js | 88 TestMathImul(0, undefined, 7); 89 TestMathImul(0, 7, undefined); 90 TestMathImul(0, undefined, undefined);
|
strict-mode-implicit-receiver.js | 97 // Check calls to eval within a function with 'undefined' as receiver. 166 outer_eval_conversion3(strict_return_this, 'undefined'); 168 outer_eval_conversion3(strict_eval, 'undefined'); 171 outer_eval_conversion3(eval, 'undefined');
|
/external/v8/test/mjsunit/harmony/ |
block-conflicts.js | 81 "let x = undefined", 87 "const x = undefined", 94 "var x = undefined",
|
/external/v8/test/mjsunit/ |
strict-mode.js | 224 CheckStrictMode("function strict() { eval = undefined; }", SyntaxError); 225 CheckStrictMode("function strict() { arguments = undefined; }", SyntaxError); 226 CheckStrictMode("function strict() { print(eval = undefined); }", SyntaxError); 227 CheckStrictMode("function strict() { print(arguments = undefined); }", 229 CheckStrictMode("function strict() { var x = eval = undefined; }", SyntaxError); 230 CheckStrictMode("function strict() { var x = arguments = undefined; }", 234 CheckStrictMode("function strict() { eval *= undefined; }", SyntaxError); 235 CheckStrictMode("function strict() { arguments /= undefined; }", SyntaxError); 236 CheckStrictMode("function strict() { print(eval %= undefined); }", SyntaxError); 237 CheckStrictMode("function strict() { print(arguments %= undefined); }", [all...] |
/external/chromium_org/chrome/browser/resources/backloader/web/ |
cros_validator.js | 18 callback_: undefined,
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdebug/ |
ttsdebug.js | 73 if (startTime == undefined) { 118 if (startTime == undefined) 153 if (startTime == undefined) 198 if (startTime == undefined) 377 if (startTime == undefined) { 434 if (startTime == undefined) { 502 if (startTime == undefined) { 650 if (resultMap[test.dependencies[i]] != undefined) {
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
app_window_custom_bindings.js | 32 // undefined object. 57 callback(undefined); 68 callback(undefined); 72 callback(undefined);
|
experimental.offscreenTabs_custom_bindings.js | 14 if (src[prop] !== undefined)
|
/external/chromium_org/content/test/data/indexeddb/ |
transaction_get_test.js | 19 shouldBe("event.target.result", "undefined");
|