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
230
) sorted by null
1
2
3
4
5
6
7
8
9
10
/external/chromium_org/chrome/browser/resources/chromeos/
certificate_manager_dialog.js
61
return src
instanceof
HTMLTextAreaElement ||
62
src
instanceof
HTMLInputElement &&
proxy_settings.js
50
return src
instanceof
HTMLTextAreaElement ||
51
src
instanceof
HTMLInputElement &&
/external/chromium_org/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/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
SortableDataGrid.js
45
var aNumber = Number(aValue
instanceof
Node ? aValue.textContent : aValue);
46
var bNumber = Number(bValue
instanceof
Node ? bValue.textContent : bValue);
60
var aString = aValue
instanceof
Node ? aValue.textContent : String(aValue);
61
var bString = bValue
instanceof
Node ? bValue.textContent : String(bValue);
121
if (isNaN(value
instanceof
Node ? value.textContent : value)) {
/external/chromium_org/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);
/external/chromium_org/v8/test/mjsunit/
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);
/external/chromium_org/chrome/browser/ui/webui/options/
autofill_options_browsertest.js
112
assertTrue(field
instanceof
cr.ui.List);
120
assertTrue(field
instanceof
HTMLInputElement);
125
assertTrue(addrLines
instanceof
HTMLTextAreaElement);
129
assertTrue(country
instanceof
HTMLSelectElement);
/external/chromium_org/chrome/common/extensions/docs/static/js/
samples.js
34
if (event.target
instanceof
HTMLAnchorElement) {
/external/chromium_org/chrome/renderer/resources/extensions/
input.ime_custom_bindings.js
33
if (opt_extraInfo
instanceof
Array) {
/external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
example.js
32
if (!(event.data
instanceof
Array))
/external/chromium_org/tools/telemetry/telemetry/page/actions/
play.js
17
if (element
instanceof
HTMLMediaElement)
/external/chromium_org/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/chromium_org/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/chromium_org/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/chromium_org/chrome/test/chromedriver/js/
focus.js
36
if (!(error
instanceof
TypeError) && !(error
instanceof
DOMException &&
Completed in 253 milliseconds
1
2
3
4
5
6
7
8
9
10