HomeSort by relevance Sort by last modified time
    Searched refs:V8Proxy (Results 26 - 50 of 86) sorted by null

12 3 4

  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WebSocketCustom.cpp 40 #include "V8Proxy.h"
55 return throwError("Not enough arguments", V8Proxy::SyntaxError);
62 return throwError("Empty URL", V8Proxy::SyntaxError);
67 return throwError("WebSocket constructor's associated frame is not available", V8Proxy::ReferenceError);
V8WebGLRenderingContextCustom.cpp 54 #include "V8Proxy.h"
195 V8Proxy::setDOMException(SYNTAX_ERR);
223 V8Proxy::setDOMException(ec);
249 V8Proxy::setDOMException(SYNTAX_ERR);
256 V8Proxy::throwTypeError();
263 V8Proxy::setDOMException(ec);
285 V8Proxy::setDOMException(SYNTAX_ERR);
298 V8Proxy::setDOMException(SYNTAX_ERR);
309 V8Proxy::setDOMException(ec);
320 V8Proxy::setDOMException(SYNTAX_ERR)
    [all...]
V8HTMLAudioElementConstructor.cpp 41 #include "V8Proxy.h"
56 Frame* frame = V8Proxy::retrieveFrameForCurrentContext();
58 return throwError("Audio constructor associated frame is unavailable", V8Proxy::ReferenceError);
62 return throwError("Audio constructor associated document is unavailable", V8Proxy::ReferenceError);
V8HTMLImageElementConstructor.cpp 41 #include "V8Proxy.h"
56 Frame* frame = V8Proxy::retrieveFrameForCurrentContext();
58 return throwError("Image constructor associated frame is unavailable", V8Proxy::ReferenceError);
62 return throwError("Image constructor associated document is unavailable", V8Proxy::ReferenceError);
V8HTMLOptionElementConstructor.cpp 41 #include "V8Proxy.h"
56 Frame* frame = V8Proxy::retrieveFrameForCurrentContext();
58 return throwError("Option constructor associated frame is unavailable", V8Proxy::ReferenceError);
62 return throwError("Option constructor associated document is unavailable", V8Proxy::ReferenceError);
V8ArrayBufferViewCustom.h 38 #include "V8Proxy.h"
58 return throwError("ArrayBuffer length minus the byteOffset is not a multiple of the element size.", V8Proxy::RangeError);
68 V8Proxy::setDOMException(INDEX_SIZE_ERR);
116 // FIXME: use forthcoming V8Proxy::throwTypeError().
117 return V8Proxy::throwError(V8Proxy::TypeError, "Type error");
147 return throwError("ArrayBufferView size is not a small enough positive integer.", V8Proxy::RangeError);
167 V8Proxy::setDOMException(SYNTAX_ERR);
181 V8Proxy::setDOMException(ec);
196 V8Proxy::setDOMException(INDEX_SIZE_ERR)
    [all...]
V8DirectoryEntrySyncCustom.cpp 44 #include "V8Proxy.h"
105 V8Proxy::setDOMException(ec);
110 V8Proxy::setDOMException(ec);
124 V8Proxy::setDOMException(ec);
129 V8Proxy::setDOMException(ec);
V8DOMFormDataCustom.cpp 38 #include "V8Proxy.h"
48 return throwError("DOM object constructor cannot be called as a function.", V8Proxy::SyntaxError);
64 return throwError("Not enough arguments", V8Proxy::SyntaxError);
V8FileReaderCustom.cpp 48 return throwError("DOM object constructor cannot be called as a function.", V8Proxy::TypeError);
54 return throwError("FileReader constructor's associated context is not available", V8Proxy::ReferenceError);
V8HTMLDocumentCustom.cpp 46 #include "V8Proxy.h"
115 Frame* frame = V8Proxy::retrieveFrameForCallingContext();
124 Frame* frame = V8Proxy::retrieveFrameForCallingContext();
137 v8::Local<v8::Context> context = V8Proxy::context(frame);
154 V8Proxy* proxy = V8Proxy::retrieve(frame);
163 Frame* frame = V8Proxy::retrieveFrameForCallingContext();
191 if (V8Proxy* proxy = V8Proxy::retrieve(impl->frame()))
V8ClipboardCustom.cpp 43 #include "V8Proxy.h"
76 return throwError("clearData: Invalid number of arguments", V8Proxy::SyntaxError);
89 return throwError("getData: Invalid number of arguments", V8Proxy::SyntaxError);
108 return throwError("setDragImage: Invalid number of arguments", V8Proxy::SyntaxError);
V8CustomApplicationInstalledCallback.cpp 51 v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get());
V8NavigatorCustom.cpp 39 #include "V8Proxy.h"
84 Frame* frame = V8Proxy::retrieveFrameForCurrentContext();
94 return throwError("Two arguments required: an application name and a callback.", V8Proxy::SyntaxError);
  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.h 124 class V8Proxy {
135 explicit V8Proxy(Frame*);
137 ~V8Proxy();
185 // Returns V8Proxy object of the currently executing context.
186 static V8Proxy* retrieve();
187 // Returns V8Proxy object associated with a frame.
188 static V8Proxy* retrieve(Frame*);
189 // Returns V8Proxy object associated with a script execution context.
190 static V8Proxy* retrieve(ScriptExecutionContext*);
345 v8::Handle<v8::Value> V8Proxy::constructDOMObject(const v8::Arguments& args, WrapperTypeInfo* type
    [all...]
V8NodeFilterCondition.cpp 38 #include "V8Proxy.h"
76 V8Proxy::throwError(V8Proxy::TypeError, "NodeFilter object does not have an acceptNode function");
86 v8::Handle<v8::Value> result = V8Proxy::callFunctionWithoutFrame(callback, object, 1, args.get());
V8EventListener.cpp 34 #include "V8Proxy.h"
76 if (V8Proxy* proxy = V8Proxy::retrieve(context))
V8LazyEventListener.cpp 38 #include "V8Proxy.h"
68 if (V8Proxy* proxy = V8Proxy::retrieve(context))
89 V8Proxy* proxy = V8Proxy::retrieve(context);
120 v8::Handle<v8::Script> script = V8Proxy::compileScript(codeExternalString, m_sourceURL, m_position);
ScriptController.cpp 62 #include "V8Proxy.h"
90 return V8Proxy::retrieveFrameForEnteredContext();
95 return V8Proxy::retrieveFrameForCurrentContext();
115 , m_proxy(new V8Proxy(frame))
159 Frame* activeFrame = V8Proxy::retrieveFrameForEnteredContext();
165 V8Proxy* activeProxy = activeFrame->script()->proxy();
168 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(activeFrame);
227 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(m_proxy->frame());
267 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(frame);
398 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(frame)
    [all...]
DateExtension.cpp 34 #include "V8Proxy.h"
78 v8::Local<v8::Value> result = V8Proxy::currentContext()->Global()->Get(v8::String::New("Date"));
119 V8Proxy::throwError(V8Proxy::GeneralError, "Too much time spent in unload handler.");
ScheduledAction.cpp 39 #include "V8Proxy.h"
93 V8Proxy* proxy = V8Proxy::retrieve(context);
100 // It's possible that Javascript is disabled and that we have neither a V8Proxy
104 void ScheduledAction::execute(V8Proxy* proxy)
V8Utilities.cpp 42 #include "V8Proxy.h"
124 if (Frame* frame = V8Proxy::retrieveFrameForCurrentContext())
132 V8Proxy::throwError(V8Proxy::GeneralError, "TYPE_MISMATCH_ERR: DOM Exception 17");
WorkerContextExecutionProxy.cpp 46 #include "V8Proxy.h"
203 v8::Handle<v8::Script> compiledScript = V8Proxy::compileScript(scriptString, fileName, scriptStartPosition);
218 state->exception = V8Proxy::throwError(V8Proxy::GeneralError, state->errorMessage.utf8().data());
240 script = V8Proxy::compileScript(code, "", TextPosition0::minimumPosition());
243 if (V8Proxy::handleOutOfMemory())
PageScriptDebugServer.cpp 41 #include "V8Proxy.h"
62 return V8Proxy::retrieveFrame(context);
83 V8Proxy* proxy = V8Proxy::retrieve(page->mainFrame());
V8DOMWrapper.h 53 class V8Proxy;
94 static RefPtr<XPathNSResolver> getXPathNSResolver(v8::Handle<v8::Value> value, V8Proxy* proxy = 0);
126 static v8::Local<v8::Object> instantiateV8Object(V8Proxy* proxy, WrapperTypeInfo*, void* impl);
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestInterface.cpp 31 #include "V8Proxy.h"
47 return V8Proxy::constructDOMObjectWithScriptExecutionContext<TestInterface>(args, &info);
84 V8Proxy* proxy = 0;

Completed in 1711 milliseconds

12 3 4