HomeSort by relevance Sort by last modified time
    Searched refs:undefined (Results 176 - 200 of 1945) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/v8/test/mjsunit/
indexed-accessors.js 90 // Using a getter where only a setter is defined returns undefined.
93 assertEquals(q1[0], undefined);
96 assertEquals(q1[0], undefined);
99 // Complex case of using an undefined getter.
108 assertEquals(this[a], undefined);
setter-on-constructor-prototype.js 41 assertEquals("undefined", typeof c1.x);
57 assertEquals("undefined", typeof c2.x);
73 assertEquals("undefined", typeof c3.x);
90 assertEquals("undefined", typeof c4.x);
106 assertEquals("undefined", typeof d.y);
array-elements-from-array-prototype-chain.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-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...]
mirror-unresolved-function.js 61 assertEquals('undefined', typeof mirror.inferredName());
64 assertEquals('undefined', mirror.constructorFunction().type());
65 assertEquals('undefined', mirror.protoObject().type());
66 assertEquals('undefined', mirror.prototypeObject().type());
73 assertEquals('undefined', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
75 assertEquals('undefined', refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected proto object type in JSON');
77 assertEquals('undefined', refs.lookup(fromJSON.prototypeObject.ref).type, 'Unexpected prototype object type in JSON');
function-call.js 73 // type, but since this change will allow call to be invoked with undefined
153 assertTrue(e.message.indexOf("called on null or undefined") >= 0 ||
154 e.message.indexOf("invoked on undefined or null value") >= 0 ||
155 e.message.indexOf("Cannot convert undefined or null to object") >= 0);
166 // parameters will have the undefined value.
167 // The test for whether the "this" value is null or undefined is always
169 // undefined value is an invalid argument value, it mustn't change
180 should_throw_on_null_and_undefined[i].call(undefined);
198 should_throw_on_null_and_undefined[i].apply(undefined);
206 // Test that all natives that are non generic throw on null and undefined
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2273.js 43 assertEquals("undefined", String(this));
62 CheckUndefinedReceiver.call(undefined);
72 CheckCoersion.call(undefined);
85 CheckUndefinedReceiver.call(undefined);
95 CheckCoersion.call(undefined);
  /external/chromium_org/v8/test/webkit/
toString-elision-trailing-comma.js 74 return [,undefined];
78 return [,undefined,];
82 return [,undefined,,];
93 shouldBe("typeof undefined", "'undefined'");
  /external/v8/test/mjsunit/
indexed-accessors.js 90 // Using a getter where only a setter is defined returns undefined.
93 assertEquals(q1[0], undefined);
96 assertEquals(q1[0], undefined);
99 // Complex case of using an undefined getter.
108 assertEquals(this[a], undefined);
setter-on-constructor-prototype.js 41 assertEquals("undefined", typeof c1.x);
57 assertEquals("undefined", typeof c2.x);
73 assertEquals("undefined", typeof c3.x);
90 assertEquals("undefined", typeof c4.x);
106 assertEquals("undefined", typeof d.y);
array-elements-from-array-prototype-chain.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-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...]
mirror-unresolved-function.js 61 assertEquals('undefined', typeof mirror.inferredName());
64 assertEquals('undefined', mirror.constructorFunction().type());
65 assertEquals('undefined', mirror.protoObject().type());
66 assertEquals('undefined', mirror.prototypeObject().type());
73 assertEquals('undefined', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
75 assertEquals('undefined', refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected proto object type in JSON');
77 assertEquals('undefined', refs.lookup(fromJSON.prototypeObject.ref).type, 'Unexpected prototype object type in JSON');
  /external/chromium_org/v8/test/webkit/fast/js/kde/
Array.js 99 shouldBe("['a',undefined,'c'][1]", "undefined");
100 shouldBe("['a',,'c'][1]", "undefined");
102 shouldBe("1 in ['a',undefined,'c']", "true");
118 shouldBe("forInSum([,undefined,'x','aa'])", "'undefinedxaa'");
129 shouldBe("String([,undefined,'x','aa'].sort())", "'aa,x,,'");
130 shouldBe("2 in [,undefined,'x','aa'].sort()", "true");
131 shouldBe("3 in [,undefined,'x','aa'].sort()", "false");
171 shouldBe("arr[maxint]","undefined");
186 shouldBe("arr[55.5]","undefined");
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
browser_bridge_tests.js 26 gpuInfo: undefined,
27 clientInfo: undefined,
28 logMessages: undefined
32 gpuInfo: undefined,
33 clientInfo: undefined,
42 gpuInfo: {"basic_info":undefined,
64 clientInfo: undefined,
  /external/chromium_org/content/browser/resources/gpu/
browser_bridge_tests.js 267 gpuInfo: undefined,
268 clientInfo: undefined,
269 logMessages: undefined
273 gpuInfo: undefined,
274 clientInfo: undefined,
284 basic_info: undefined,
313 clientInfo: undefined,
  /external/chromium_org/v8/test/mjsunit/harmony/
string-startswith.js 38 assertFalse(testString.startsWith(undefined));
41 assertTrue("undefined".startsWith(undefined));
50 assertThrows("String.prototype.startsWith.call(undefined, undefined)", TypeError);
54 assertThrows("String.prototype.startsWith.apply(undefined, [undefined])", TypeError);
collections.js 54 assertThrows(function () { m.get(undefined) }, TypeError);
55 assertThrows(function () { m.set(undefined, 0) }, TypeError);
69 assertSame(undefined, set.add(key));
83 var keys = [ +0, -0, +Infinity, -Infinity, true, false, null, undefined ];
94 assertSame(undefined, map.set(key, value));
113 var keys = [ +0, -0, +Infinity, -Infinity, true, false, null, undefined ];
124 var values = [ 'x', 0, +Infinity, -Infinity, true, false, null, undefined ];
142 assertSame(m.get(key), undefined);
167 for (key = head; key != undefined; key = m.get(key)) {
345 assertEquals(undefined, o.get)
    [all...]
  /external/chromium_org/chrome/browser/resources/google_now/
cards.js 11 * showTimeSec: (string|undefined),
38 * messageUrl: (string|undefined),
39 * buttonUrls: (Array.<string>|undefined)
60 * actionUrls: (ActionUrls|undefined),
62 * locationBased: (boolean|undefined),
74 * showTime: (number|undefined),
93 * actionUrls: (ActionUrls|undefined),
153 if (onCardShown !== undefined)
190 * @return {(NotificationDataEntry|undefined)} Notification data entry for
191 * this card. It's 'undefined' if the card's life is over
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ResourceWebSocketFrameView.js 34 ], undefined, undefined, undefined, this._onContextMenu.bind(this));
58 length: typeof payload.payloadData === "undefined" ? payload.errorMessage.length.toString() : payload.payloadData.length.toString(),
  /external/valgrind/main/gdbserver_tests/
t.c 12 static char undefined[10] = "undefined"; variable
111 int len = strlen(undefined);
114 undefined[i] = undef;
  /external/chromium_org/v8/test/intl/date-format/
parse-MMMdy.js 45 assertEquals(undefined, dtf.v8Parse('Feb 4 1974'));
48 assertEquals(undefined, dtf.v8Parse('Feb 4th, 1974'));
51 assertEquals(undefined, dtf.v8Parse('2/4/1974'));
  /external/chromium_org/v8/test/intl/overrides/
string.js 41 if (locale === undefined) {
58 var options = undefined;
63 options = undefined;

Completed in 405 milliseconds

1 2 3 4 5 6 78 91011>>