HomeSort by relevance Sort by last modified time
    Searched refs:createReferenceError (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebCore/bindings/js/
JSAudioContextCustom.cpp 46 return throwError(exec, createReferenceError(exec, "AudioContext constructor callee is unavailable"));
50 return throwError(exec, createReferenceError(exec, "AudioContext constructor script execution context is unavailable"));
53 return throwError(exec, createReferenceError(exec, "AudioContext constructor called in a script execution context which is not a document"));
76 return throwError(exec, createReferenceError(exec, "Error creating AudioContext"));
JSEventSourceCustom.cpp 59 return throwVMError(exec, createReferenceError(exec, "EventSource constructor associated document is unavailable"));
JSMessageChannelCustom.cpp 52 return throwVMError(exec, createReferenceError(exec, "MessageChannel constructor associated document is unavailable"));
JSAudioConstructor.cpp 56 return throwVMError(exec, createReferenceError(exec, "Audio constructor associated document is unavailable"));
JSImageConstructor.cpp 49 return throwVMError(exec, createReferenceError(exec, "Image constructor associated document is unavailable"));
JSWebSocketCustom.cpp 52 return throwVMError(exec, createReferenceError(exec, "WebSocket constructor associated document is unavailable"));
JSOptionConstructor.cpp 51 return throwVMError(exec, createReferenceError(exec, "Option constructor associated document is unavailable"));
JSXMLHttpRequestCustom.cpp 207 return throwVMError(exec, createReferenceError(exec, "XMLHttpRequest constructor associated document is unavailable"));
  /external/webkit/Source/JavaScriptCore/runtime/
Error.h 43 JSObject* createReferenceError(JSGlobalObject*, const UString&);
51 JSObject* createReferenceError(ExecState*, const UString&);
ExceptionHelpers.cpp 91 return createReferenceError(exec, message);
132 return createReferenceError(exec, makeUString("Strict mode forbids implicit creation of global property '", propertyName, "'"));
Error.cpp 60 JSObject* createReferenceError(JSGlobalObject* globalObject, const UString& message)
99 JSObject* createReferenceError(ExecState* exec, const UString& message)
101 return createReferenceError(exec->lexicalGlobalObject(), message);
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackObjectFunctions.h 229 throwError(exec, createReferenceError(exec, "Attempt to set a property that is not settable."));
545 return throwError(exec, createReferenceError(exec, "Static value property defined with NULL getProperty callback."));
571 return throwError(exec, createReferenceError(exec, "Static function property defined with NULL callAsFunction callback."));
600 return throwError(exec, createReferenceError(exec, "hasProperty callback returned true for a property that doesn't exist."));
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestInterface.cpp 105 return throwVMError(exec, createReferenceError(exec, "Reference error"));
  /external/webkit/Source/WebCore/bridge/
runtime_object.cpp 313 return throwError(exec, createReferenceError(exec, "Trying to access object from destroyed plug-in."));
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPObject.cpp 412 return throwError(exec, createReferenceError(exec, "Trying to access object from destroyed plug-in."));
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]

Completed in 145 milliseconds