HomeSort by relevance Sort by last modified time
    Searched refs:ReferenceError (Results 1 - 25 of 43) sorted by null

1 2

  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Operators/
11.13.1-001.js 47 var TEST_PASSED = 'ReferenceError';
48 var TEST_FAILED = 'Generated an error, but NOT a ReferenceError!';
69 if (e instanceof ReferenceError)
89 if (e instanceof ReferenceError)
109 if (e instanceof ReferenceError)
  /external/webkit/WebCore/bindings/v8/custom/
V8XMLHttpRequestConstructor.cpp 54 return throwError("XMLHttpRequest constructor's associated context is not available", V8Proxy::ReferenceError);
V8EventSourceConstructor.cpp 57 return throwError("EventSource constructor's associated context is not available", V8Proxy::ReferenceError);
V8HTMLAudioElementConstructor.cpp 56 return throwError("Audio constructor associated frame is unavailable", V8Proxy::ReferenceError);
60 return throwError("Audio constructor associated document is unavailable", V8Proxy::ReferenceError);
V8HTMLImageElementConstructor.cpp 56 return throwError("Image constructor associated frame is unavailable", V8Proxy::ReferenceError);
60 return throwError("Image constructor associated document is unavailable", V8Proxy::ReferenceError);
V8HTMLOptionElementConstructor.cpp 56 return throwError("Option constructor associated frame is unavailable", V8Proxy::ReferenceError);
60 return throwError("Option constructor associated document is unavailable", V8Proxy::ReferenceError);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
binding-001.js 37 var ERR_REF_YES = 'ReferenceError';
38 var ERR_REF_NO = 'did NOT generate a ReferenceError';
55 actual = e instanceof ReferenceError;
62 * Searching for literal string "ReferenceError" in e.toString()
65 var match = e.toString().search(/ReferenceError/);
regress-95101.js 22 * SUMMARY: Invoking an undefined function should produce a ReferenceError
28 var summary = 'Invoking an undefined function should produce a ReferenceError';
29 var msgERR_REF_YES = 'ReferenceError';
30 var msgERR_REF_NO = 'did NOT generate a ReferenceError';
46 actual = e instanceof ReferenceError;
53 * Searching for literal string "ReferenceError" in e.toString()
56 var match = e.toString().search(/ReferenceError/);
  /external/webkit/JavaScriptCore/runtime/
Error.h 42 ReferenceError = 3,
  /external/webkit/WebCore/bindings/js/
JSMessageChannelConstructor.cpp 62 return throwError(exec, ReferenceError, "MessageChannel constructor associated document is unavailable");
JSXMLHttpRequestConstructor.cpp 47 return throwError(exec, ReferenceError, "XMLHttpRequest constructor associated document is unavailable");
JSAudioConstructor.cpp 58 return throwError(exec, ReferenceError, "Audio constructor associated document is unavailable");
JSEventSourceConstructor.cpp 71 return throwError(exec, ReferenceError, "EventSource constructor associated document is unavailable");
JSImageConstructor.cpp 62 return throwError(exec, ReferenceError, "Image constructor associated document is unavailable");
JSOptionConstructor.cpp 50 return throwError(exec, ReferenceError, "Option constructor associated document is unavailable");
JSWebSocketConstructor.cpp 62 return throwError(exec, ReferenceError, "WebSocket constructor associated document is unavailable");
  /external/v8/test/mjsunit/
stack-traces.js 132 assertEquals(-1, e.stack.indexOf('at new ReferenceError'),
133 "CallerCensorship contained new ReferenceError");
143 new ReferenceError({
149 assertTrue(e.stack.indexOf('at new ReferenceError') != -1,
150 "UnintendedCallerCensorship didn't contain new ReferenceError");
168 assertTrue(e.stack.indexOf('<error: ReferenceError') != -1,
169 "ErrorsDuringFormatting didn't contain error: ReferenceError");
175 ReferenceError.prototype.toString = function () { NESTED_FAIL; };
mirror-error.js 91 testErrorMirror(new ReferenceError('ReferenceError'));
body-not-visible.js 37 assertTrue(e instanceof ReferenceError);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Object/
class-003.js 63 status = 'new ReferenceError()';
64 actual = getJSClass(new ReferenceError());
class-004.js 62 status = 'ReferenceError';
63 actual = getJSClass(ReferenceError);
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Exceptions/
regress-123002.js 82 new ReferenceError(), new SyntaxError(), new TypeError(), new URIError()];
  /external/v8/test/mjsunit/regress/
regress-900055.js 40 assertTrue(e instanceof ReferenceError);
  /external/webkit/WebCore/bindings/v8/
V8NPObject.cpp 83 return throwError("NPMethod called on non-NPObject", V8Proxy::ReferenceError);
90 return throwError("NPObject deleted", V8Proxy::ReferenceError);
174 return throwError("NPObject deleted", V8Proxy::ReferenceError);
242 throwError("NPObject deleted", V8Proxy::ReferenceError);
293 throwError("NPObject deleted", V8Proxy::ReferenceError);
  /external/webkit/JavaScriptCore/API/
JSCallbackObjectFunctions.h 231 throwError(exec, ReferenceError, "Attempt to set a property that is not settable.");
546 return throwError(exec, ReferenceError, "Static value property defined with NULL getProperty callback.");
571 return throwError(exec, ReferenceError, "Static function property defined with NULL callAsFunction callback.");
600 return throwError(exec, ReferenceError, "hasProperty callback returned true for a property that doesn't exist.");

Completed in 339 milliseconds

1 2