Home
last modified time | relevance | path

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

12345

/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.js51 assertInstanceof(e, ReferenceError);
97 assertInstanceof(e, ReferenceError);
Dbody-not-visible.js37 assertTrue(e instanceof ReferenceError);
/external/v8/test/mjsunit/harmony/
Dblock-let-crankshaft.js173 assertInstanceof(e, ReferenceError);
181 assertInstanceof(e, ReferenceError);
196 assertInstanceof(e, ReferenceError);
207 assertInstanceof(e, ReferenceError);
255 assertInstanceof(e, ReferenceError);
261 assertInstanceof(e, ReferenceError);
Dblock-let-semantics.js40 assertInstanceof(e, ReferenceError);
50 assertInstanceof(e, 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/v8/test/message/regress/
Dregress-1527.out28 *%(basename)s:32: ReferenceError: foo is not defined
31 ReferenceError: foo is not defined
/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/
Dnodecomparedocumentposition05-expected.txt3 Message Line 117: ReferenceError
Ddomimplementationregistry13-expected.txt3 Message Line 93: ReferenceError
Ddomimplementationregistry07-expected.txt3 Message Line 88: ReferenceError
Ddomimplementationregistry06-expected.txt3 Message Line 89: ReferenceError
Ddomimplementationregistry03-expected.txt3 Message Line 86: ReferenceError
Ddomimplementationregistry16-expected.txt3 Message Line 89: ReferenceError
Ddomimplementationregistry09-expected.txt3 Message Line 89: ReferenceError
Ddomimplementationregistry11-expected.txt3 Message Line 89: ReferenceError
Ddomimplementationregistry02-expected.txt3 Message Line 88: ReferenceError
Dnodecomparedocumentposition33-expected.txt3 Message Line 116: ReferenceError
Dnodecomparedocumentposition03-expected.txt3 Message Line 115: ReferenceError
Ddomimplementationregistry08-expected.txt3 Message Line 89: ReferenceError

12345