OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:instanceof
(Results
51 - 75
of
219
) sorted by null
1
2
3
4
5
6
7
8
9
/external/v8/test/mjsunit/
mirror-object.js
52
assertTrue(mirror
instanceof
debug.Mirror, 'Unexpected mirror hierarchy');
53
assertTrue(mirror
instanceof
debug.ValueMirror, 'Unexpected mirror hierarchy');
54
assertTrue(mirror
instanceof
debug.ObjectMirror, 'Unexpected mirror hierarchy');
61
assertTrue(mirror.constructorFunction()
instanceof
debug.ObjectMirror, 'Unexpected mirror hierarchy');
63
assertTrue(mirror.protoObject()
instanceof
debug.Mirror, 'Unexpected mirror hierarchy');
64
assertTrue(mirror.prototypeObject()
instanceof
debug.Mirror, 'Unexpected mirror hierarchy');
72
assertTrue(properties[i]
instanceof
debug.Mirror, 'Unexpected mirror hierarchy');
73
assertTrue(properties[i]
instanceof
debug.PropertyMirror, 'Unexpected mirror hierarchy');
80
assertTrue(internalProperties[i]
instanceof
debug.Mirror, 'Unexpected mirror hierarchy');
81
assertTrue(internalProperties[i]
instanceof
debug.InternalPropertyMirror, 'Unexpected mirror hierarchy')
[
all
...]
mirror-string.js
40
assertTrue(mirror
instanceof
debug.Mirror);
41
assertTrue(mirror
instanceof
debug.ValueMirror);
42
assertTrue(mirror
instanceof
debug.StringMirror);
mirror-unresolved-function.js
50
assertTrue(mirror
instanceof
debug.Mirror);
51
assertTrue(mirror
instanceof
debug.ValueMirror);
52
assertTrue(mirror
instanceof
debug.ObjectMirror);
53
assertTrue(mirror
instanceof
debug.FunctionMirror);
with-leave.js
56
assertTrue(e2
instanceof
ReferenceError);
148
if (e
instanceof
MjsUnitAssertionError) throw e;
165
if (e
instanceof
MjsUnitAssertionError) throw e;
219
if (e
instanceof
MjsUnitAssertionError) throw e;
call-non-function.js
42
assertTrue(caught[0]
instanceof
TypeError);
43
assertTrue(caught[1]
instanceof
TypeError);
function-call.js
213
assertTrue(e
instanceof
TypeError);
222
assertTrue(e
instanceof
TypeError);
231
assertTrue(e
instanceof
TypeError);
240
assertTrue(e
instanceof
TypeError);
286
assertTrue(e
instanceof
TypeError);
297
assertTrue(e
instanceof
TypeError);
334
assertTrue(e
instanceof
TypeError);
343
assertTrue(e
instanceof
TypeError);
mirror-null.js
37
assertTrue(mirror
instanceof
debug.Mirror);
38
assertTrue(mirror
instanceof
debug.NullMirror);
mirror-undefined.js
37
assertTrue(mirror
instanceof
debug.Mirror);
38
assertTrue(mirror
instanceof
debug.UndefinedMirror);
array-reduce.js
34
if (v
instanceof
Array) {
419
assertTrue(e
instanceof
TypeError,
431
assertTrue(e
instanceof
TypeError,
443
assertTrue(e
instanceof
TypeError,
455
assertTrue(e
instanceof
TypeError,
467
assertTrue(e
instanceof
TypeError,
479
assertTrue(e
instanceof
TypeError,
/external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
play.js
17
if (element
instanceof
HTMLMediaElement)
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
deterministic.js
30
if (this
instanceof
Date) {
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
web-animations-next-player.js
39
if (!this.source || this.source
instanceof
window.Animation) {
43
if (this.source
instanceof
window.AnimationSequence || this.source
instanceof
window.AnimationGroup) {
162
if (this.source
instanceof
window.AnimationSequence)
/external/v8/test/js-perf-test/SpreadCalls/
spreadcalls.js
76
return result
instanceof
Sum && result.sum === expected;
/external/v8/test/mjsunit/es6/
block-leave.js
74
assertTrue(e2
instanceof
ReferenceError);
156
if (e
instanceof
MjsUnitAssertionError) throw e;
173
if (e
instanceof
MjsUnitAssertionError) throw e;
223
if (e
instanceof
MjsUnitAssertionError) throw e;
classes-maps.js
51
assertTrue(exn
instanceof
TypeError);
typedarray-reduce.js
19
if (v
instanceof
Array) {
189
assertTrue(e
instanceof
TypeError,
201
assertTrue(e
instanceof
TypeError,
213
assertTrue(e
instanceof
TypeError,
225
assertTrue(e
instanceof
TypeError,
/external/v8/test/mjsunit/es6/debug-promises/
reject-in-constructor.js
21
assertTrue(event_data.promise()
instanceof
Promise);
throw-in-constructor.js
21
assertTrue(event_data.promise()
instanceof
Promise);
try-reject-in-constructor.js
21
assertTrue(event_data.promise()
instanceof
Promise);
/external/v8/test/mjsunit/harmony/
block-leave-sloppy.js
74
assertTrue(e2
instanceof
ReferenceError);
156
if (e
instanceof
MjsUnitAssertionError) throw e;
173
if (e
instanceof
MjsUnitAssertionError) throw e;
223
if (e
instanceof
MjsUnitAssertionError) throw e;
/external/v8/test/mjsunit/wasm/
instantiate-module-basic.js
48
assertTrue(mem
instanceof
ArrayBuffer);
calls.js
47
assertTrue(mem
instanceof
ArrayBuffer);
98
assertTrue(mem
instanceof
ArrayBuffer);
/external/v8/test/webkit/
instance-of-immediates.js
33
testMethod["1"]("(1
instanceof
" + constructor + ")");
34
testMethod["{}"]("({}
instanceof
" + constructor + ")");
35
testMethod["obj"]("(obj
instanceof
" + constructor + ")");
56
// All test fail, no reason to throw. (obj
instanceof
Constructor) is now false, since Constructor.prototype has changed.
/external/v8/test/webkit/fast/js/
Promise-catch.js
57
shouldBeTrue('firstPromise
instanceof
Promise');
58
shouldBeTrue('secondPromise
instanceof
Promise');
Promise-then.js
47
shouldBeTrue('firstPromise
instanceof
Promise');
48
shouldBeTrue('secondPromise
instanceof
Promise');
Completed in 600 milliseconds
1
2
3
4
5
6
7
8
9