Home
last modified time | relevance | path

Searched refs:ReferenceError (Results 1 – 25 of 97) sorted by relevance

1234

/external/v8/test/mjsunit/
Derror-constructors.js37 ReferenceError.prototype.__defineSetter__('stack', fail); class
38 ReferenceError.prototype.__defineSetter__('message', fail);
39 ReferenceError.prototype.__defineSetter__('type', fail);
40 ReferenceError.prototype.__defineSetter__('arguments', fail);
41 var e0 = new ReferenceError();
42 var e1 = new ReferenceError('123');
56 assertEquals("ReferenceError", ReferenceError.prototype.name);
57 delete ReferenceError.prototype.name;
58 assertEquals("ReferenceError", ReferenceError.prototype.name);
59 ReferenceError.prototype.name = "not a reference error";
[all …]
Deval-typeof-non-existing.js34 assertThrows('typeof(true ? xxx : yyy)', ReferenceError);
35 assertThrows('with ({}) { typeof(true ? xxx : yyy) }', ReferenceError);
Dstrict-mode-opt.js48 assertInstanceof(e, ReferenceError);
92 assertInstanceof(e, ReferenceError);
Dstack-traces.js153 new ReferenceError({
185 ReferenceError.prototype.toString = function () { NESTED_FAIL; }; class
Dbody-not-visible.js37 assertTrue(e instanceof ReferenceError);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Operators/
D11.13.1-001.js69 if (e instanceof ReferenceError)
89 if (e instanceof ReferenceError)
109 if (e instanceof ReferenceError)
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8HTMLAudioElementConstructor.cpp58 … return throwError("Audio constructor associated frame is unavailable", V8Proxy::ReferenceError); in v8HTMLAudioElementConstructorCallback()
62 …return throwError("Audio constructor associated document is unavailable", V8Proxy::ReferenceError); in v8HTMLAudioElementConstructorCallback()
DV8HTMLImageElementConstructor.cpp58 … return throwError("Image constructor associated frame is unavailable", V8Proxy::ReferenceError); in v8HTMLImageElementConstructorCallback()
62 …return throwError("Image constructor associated document is unavailable", V8Proxy::ReferenceError); in v8HTMLImageElementConstructorCallback()
DV8HTMLOptionElementConstructor.cpp58 … return throwError("Option constructor associated frame is unavailable", V8Proxy::ReferenceError); in v8HTMLOptionElementConstructorCallback()
62 …eturn throwError("Option constructor associated document is unavailable", V8Proxy::ReferenceError); in v8HTMLOptionElementConstructorCallback()
DV8AudioContextCustom.cpp48 …rn throwError("AudioContext constructor associated frame is unavailable", V8Proxy::ReferenceError); in constructorCallback()
52 …throwError("AudioContext constructor associated document is unavailable", V8Proxy::ReferenceError); in constructorCallback()
/external/webkit/Source/WebCore/bindings/v8/
DV8NPObject.cpp93 return throwError("NPMethod called on non-NPObject", V8Proxy::ReferenceError); in npObjectInvokeImpl()
100 return throwError("NPObject deleted", V8Proxy::ReferenceError); in npObjectInvokeImpl()
184 return throwError("NPObject deleted", V8Proxy::ReferenceError); in npObjectGetProperty()
258 throwError("NPObject deleted", V8Proxy::ReferenceError); in npObjectSetProperty()
309 throwError("NPObject deleted", V8Proxy::ReferenceError); in npObjectPropertyEnumerator()
/external/webkit/LayoutTests/dom/xhtml/level3/core/
Dnodecomparedocumentposition03-expected.txt3 Message Line 115: ReferenceError
Ddomimplementationregistry01-expected.txt3 Message Line 83: ReferenceError
Ddomimplementationregistry07-expected.txt3 Message Line 88: ReferenceError
Ddomimplementationregistry17-expected.txt3 Message Line 91: ReferenceError
Ddomimplementationregistry19-expected.txt3 Message Line 92: ReferenceError
Ddomimplementationregistry11-expected.txt3 Message Line 89: ReferenceError
Ddomimplementationregistry20-expected.txt3 Message Line 92: ReferenceError
Ddomimplementationregistry21-expected.txt3 Message Line 92: ReferenceError
Ddomimplementationregistry03-expected.txt3 Message Line 86: ReferenceError
Ddomimplementationregistry13-expected.txt3 Message Line 93: ReferenceError
Ddomimplementationregistry06-expected.txt3 Message Line 89: ReferenceError
Ddomimplementationregistry02-expected.txt3 Message Line 88: ReferenceError
Ddomimplementationregistry04-expected.txt3 Message Line 88: ReferenceError
Ddomimplementationregistry09-expected.txt3 Message Line 89: ReferenceError

1234