OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:instanceof
(Results
26 - 50
of
146
) sorted by null
1
2
3
4
5
6
/external/v8/test/mjsunit/
mirror-error.js
52
assertTrue(mirror
instanceof
debug.Mirror);
53
assertTrue(mirror
instanceof
debug.ValueMirror);
54
assertTrue(mirror
instanceof
debug.ObjectMirror);
55
assertTrue(mirror
instanceof
debug.ErrorMirror);
mirror-number.js
38
assertTrue(mirror
instanceof
debug.Mirror);
39
assertTrue(mirror
instanceof
debug.ValueMirror);
40
assertTrue(mirror
instanceof
debug.NumberMirror);
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-regexp.js
63
assertTrue(mirror
instanceof
debug.Mirror);
64
assertTrue(mirror
instanceof
debug.ValueMirror);
65
assertTrue(mirror
instanceof
debug.ObjectMirror);
66
assertTrue(mirror
instanceof
debug.RegExpMirror);
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
216
assertTrue(e
instanceof
TypeError);
225
assertTrue(e
instanceof
TypeError);
234
assertTrue(e
instanceof
TypeError);
243
assertTrue(e
instanceof
TypeError);
287
assertTrue(e
instanceof
TypeError);
298
assertTrue(e
instanceof
TypeError);
335
assertTrue(e
instanceof
TypeError);
344
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,
array-feedback.js
197
assertTrue(type()
instanceof
type);
198
assertTrue(type(5)
instanceof
type);
199
assertTrue(type(1,2,3)
instanceof
type);
mirror-script.js
39
assertTrue(mirror
instanceof
debug.Mirror);
40
assertFalse(mirror
instanceof
debug.ValueMirror);
41
assertTrue(mirror
instanceof
debug.ScriptMirror);
/external/v8/test/mjsunit/regress/
regress-1207.js
28
// Test throwing an exception from
instanceof
.
32
var f0 = (object
instanceof
encodeURI)('#2: var x = 1; x <= 1 === true'), f1 = 1;
/external/v8/test/mjsunit/es6/
collections.js
32
if (collection
instanceof
Map || collection
instanceof
Set) {
245
assertTrue(s
instanceof
Set);
246
assertTrue(Set.prototype.add
instanceof
Function)
247
assertTrue(Set.prototype.has
instanceof
Function)
248
assertTrue(Set.prototype.delete
instanceof
Function)
249
assertTrue(Set.prototype.clear
instanceof
Function)
254
assertTrue(m
instanceof
Map);
255
assertTrue(Map.prototype.set
instanceof
Function)
256
assertTrue(Map.prototype.get
instanceof
Function
[
all
...]
generators-poisoned-properties.js
23
assertTrue(cdesc.get
instanceof
Function);
promises.js
101
assertTrue(new Promise(function() {})
instanceof
Promise)
594
function(r) { assertAsync(r
instanceof
TypeError, "cyclic/chain") }
604
function(r) { assertAsync(r
instanceof
TypeError, "cyclic/then") }
626
function(r) { assertAsync(r
instanceof
TypeError, "cyclic/deferred/then") }
634
function(r) { assertAsync(r
instanceof
TypeError, "all/no-array") }
733
function(r) { assertAsync(r
instanceof
TypeError, "one/no-array") }
829
assertTrue(d3.promise
instanceof
Promise, "subclass/instance")
830
assertTrue(d3.promise
instanceof
MyPromise, "subclass/instance-my3")
836
assertTrue(p4
instanceof
Promise, "subclass/instance4")
837
assertTrue(p4
instanceof
MyPromise, "subclass/instance-my4"
[
all
...]
/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.js
76
assertTrue(e2
instanceof
ReferenceError);
158
if (e
instanceof
MjsUnitAssertionError) throw e;
175
if (e
instanceof
MjsUnitAssertionError) throw e;
225
if (e
instanceof
MjsUnitAssertionError) throw e;
/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 390 milliseconds
1
2
3
4
5
6