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

1 23 4

  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DOMWindowCustom.cpp 65 #include "V8Proxy.h"
85 V8Proxy::setDOMException(INVALID_ACCESS_ERR);
129 ScheduledAction* action = new ScheduledAction(V8Proxy::context(imp->frame()), v8::Handle<v8::Function>::Cast(function), paramCount, params);
137 id = DOMTimer::install(scriptContext, new ScheduledAction(V8Proxy::context(imp->frame()), functionString), timeout, singleShot);
160 v8::Local<v8::Context> context = V8Proxy::context(frame);
181 v8::Local<v8::Context> context = V8Proxy::context(frame);
269 V8Proxy* proxy = V8Proxy::retrieve(imp->frame());
301 V8Proxy* proxy = V8Proxy::retrieve(imp->frame())
    [all...]
V8HTMLOptionsCollectionCustom.cpp 43 #include "V8Proxy.h"
59 V8Proxy::setDOMException(TYPE_MISMATCH_ERR);
83 V8Proxy::setDOMException(ec);
114 V8Proxy::setDOMException(ec);
V8NodeCustom.cpp 53 #include "V8Proxy.h"
71 V8Proxy::setDOMException(ec);
90 V8Proxy::setDOMException(ec);
107 V8Proxy::setDOMException(ec);
125 V8Proxy::setDOMException(ec);
V8SharedWorkerCustom.cpp 40 #include "V8Proxy.h"
55 return throwError("Not enough arguments", V8Proxy::SyntaxError);
V8XMLHttpRequestCustom.cpp 43 #include "V8Proxy.h"
77 V8Proxy::setDOMException(ec);
89 V8Proxy::setDOMException(ec);
104 V8Proxy::setDOMException(ec);
125 return throwError("Not enough arguments", V8Proxy::SyntaxError);
V8DocumentCustom.cpp 50 #include "V8Proxy.h"
136 if (V8Proxy* proxy = V8Proxy::retrieve(impl->frame()))
V8NotificationCenterCustom.cpp 43 #include "V8Proxy.h"
97 return throwError("Callback must be of valid type.", V8Proxy::TypeError);
V8SQLTransactionSyncCustom.cpp 43 #include "V8Proxy.h"
95 V8Proxy::setDOMException(ec);
V8WorkerCustom.cpp 43 #include "V8Proxy.h"
58 return throwError("Not enough arguments", V8Proxy::SyntaxError);
V8SQLTransactionCustom.cpp 44 #include "V8Proxy.h"
113 V8Proxy::setDOMException(ec);
  /external/webkit/Source/WebKit/chromium/src/
WebBindings.cpp 45 #include "V8Proxy.h"
245 WebCore::DOMWindow* window = WebCore::V8Proxy::retrieveWindow(WebCore::V8Proxy::currentContext());
256 WebCore::DOMWindow* window = WebCore::V8Proxy::retrieveWindow(WebCore::V8Proxy::currentContext());
266 WebCore::DOMWindow* window = WebCore::V8Proxy::retrieveWindow(WebCore::V8Proxy::currentContext());
DebuggerAgentManager.cpp 38 #include "V8Proxy.h"
210 int hostId = WebCore::V8Proxy::contextDebugId(context);
256 WebCore::V8Proxy* proxy = WebCore::V8Proxy::retrieve(webframe->frame());
292 WebCore::Frame* frame = WebCore::V8Proxy::retrieveFrameForEnteredContext();
InspectorFrontendClientImpl.cpp 40 #include "V8Proxy.h"
66 v8::Handle<v8::Context> frameContext = V8Proxy::context(m_frontendPage->mainFrame());
BoundObject.cpp 34 #include "V8Proxy.h"
44 v8::Local<v8::FunctionTemplate> localTemplate = v8::FunctionTemplate::New(WebCore::V8Proxy::checkNewLegal);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptController.h 38 #include "V8Proxy.h"
70 // FIXME: V8Proxy should either be folded into ScriptController
72 V8Proxy* proxy() { return m_proxy.get(); }
136 // V8Proxy::retrieveFrameForEnteredContext() for more information.
140 // V8Proxy::retrieveFrameForEnteredContext() for more information.
201 OwnPtr<V8Proxy> m_proxy;
V8AbstractEventListener.h 45 class V8Proxy;
V8IsolatedContext.cpp 52 V8IsolatedContext::V8IsolatedContext(V8Proxy* proxy, int extensionGroup)
NPV8Object.cpp 41 #include "V8Proxy.h"
186 V8Proxy* proxy = toV8Proxy(npObject);
237 V8Proxy* proxy = toV8Proxy(npObject);
272 V8Proxy* proxy = toV8Proxy(npObject);
443 V8Proxy::throwError(V8Proxy::GeneralError, message);
455 V8Proxy::throwError(V8Proxy::GeneralError, message);
537 V8Proxy* proxy = toV8Proxy(npObject);
V8NPUtils.cpp 41 #include "V8Proxy.h"
71 DOMWindow* window = V8Proxy::retrieveWindow(V8Proxy::currentContext());
V8DOMWrapper.cpp 67 #include "V8Proxy.h"
166 v8::Handle<v8::Context> context = V8Proxy::context(frame);
200 v8::Handle<v8::Context> context = V8Proxy::context(frame);
249 v8::Local<v8::Object> V8DOMWrapper::instantiateV8Object(V8Proxy* proxy, WrapperTypeInfo* type, void* impl)
265 proxy = V8Proxy::retrieve(V8DOMWindow::toNative(globalPrototype)->frame());
473 RefPtr<XPathNSResolver> V8DOMWrapper::getXPathNSResolver(v8::Handle<v8::Value> value, V8Proxy* proxy)
V8DOMWindowShell.cpp 59 #include "V8Proxy.h"
92 // FIXME: clean up V8Proxy and disable JavaScript.
104 Frame* frame = V8Proxy::retrieveFrameForEnteredContext();
152 V8Proxy::reportUnsafeAccessTo(target);
365 if (!V8Proxy::registeredExtensionWithV8(DateExtension::get()))
366 V8Proxy::registerExtension(DateExtension::get());
370 if (RuntimeEnabledFeatures::javaScriptI18NAPIEnabled() && !V8Proxy::registeredExtensionWithV8(v8::internal::I18NExtension::get()))
371 V8Proxy::registerExtension(v8::internal::I18NExtension::get());
375 const V8Extensions& extensions = V8Proxy::extensions();
V8NPObject.cpp 43 #include "V8Proxy.h"
93 return throwError("NPMethod called on non-NPObject", V8Proxy::ReferenceError);
100 return throwError("NPObject deleted", V8Proxy::ReferenceError);
134 throwError("Error calling method on NPObject.", V8Proxy::GeneralError);
184 return throwError("NPObject deleted", V8Proxy::ReferenceError);
258 throwError("NPObject deleted", V8Proxy::ReferenceError);
309 throwError("NPObject deleted", V8Proxy::ReferenceError);
ScriptState.cpp 100 V8Proxy* proxy = frame->script()->proxy();
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestSerializedScriptValueInterface.cpp 32 #include "V8Proxy.h"
79 V8Proxy* proxy = 0;
V8TestMediaQueryListListener.cpp 32 #include "V8Proxy.h"
91 V8Proxy* proxy = 0;

Completed in 381 milliseconds

1 23 4