HomeSort by relevance Sort by last modified time
    Searched refs:executionContext (Results 226 - 250 of 253) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptFunctionCall.cpp 158 v8::Local<v8::Value> result = V8ScriptRunner::callFunction(function, m_scriptState->executionContext(), thisObject, m_arguments.size(), info.get(), m_scriptState->isolate());
V8Binding.cpp 747 ExecutionContext* toExecutionContext(v8::Handle<v8::Context> context)
754 return V8Window::toImpl(windowWrapper)->executionContext();
757 return V8WorkerGlobalScope::toImpl(workerWrapper)->executionContext();
762 ExecutionContext* currentExecutionContext(v8::Isolate* isolate)
767 ExecutionContext* callingExecutionContext(v8::Isolate* isolate)
790 v8::Local<v8::Context> toV8Context(ExecutionContext* context, DOMWrapperWorld& world)
871 v8::Isolate* toIsolate(ExecutionContext* context)
    [all...]
ScriptDebugServer.cpp 543 listener->didReceiveV8AsyncTaskEvent(pausedScriptState->executionContext(), type, name, id);
698 v8::Local<v8::Value> value = V8ScriptRunner::runCompiledScript(script, scriptState->executionContext(), m_isolate);
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventTarget.h 90 // - Override EventTarget::interfaceName() and executionContext(). The former
92 // return ActiveDOMObject::executionContext (if you are an ActiveDOMObject)
107 virtual ExecutionContext* executionContext() const = 0;
  /external/chromium_org/third_party/WebKit/Source/core/timing/
Performance.cpp 65 ExecutionContext* Performance::executionContext() const
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerMessagingProxy.cpp 73 virtual void performTask(ExecutionContext* scriptContext)
88 : m_executionContext(workerObject->executionContext())
218 void WorkerMessagingProxy::workerObjectDestroyedInternal(ExecutionContext*, WorkerMessagingProxy* proxy)
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.h 69 static PassRefPtrWillBeRawPtr<XMLHttpRequest> create(ExecutionContext*, PassRefPtr<SecurityOrigin> = nullptr);
99 virtual ExecutionContext* executionContext() const OVERRIDE;
156 XMLHttpRequest(ExecutionContext*, PassRefPtr<SecurityOrigin>);
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDataChannel.cpp 30 #include "core/dom/ExecutionContext.h"
55 RTCDataChannel* RTCDataChannel::create(ExecutionContext* context, RTCPeerConnection* connection, PassOwnPtr<WebRTCDataChannelHandler> handler)
61 RTCDataChannel* RTCDataChannel::create(ExecutionContext* context, RTCPeerConnection* connection, WebRTCPeerConnectionHandler* peerConnectionHandler, const String& label, const WebRTCDataChannelInit& init, ExceptionState& exceptionState)
71 RTCDataChannel::RTCDataChannel(ExecutionContext* context, RTCPeerConnection* connection, PassOwnPtr<WebRTCDataChannelHandler> handler)
286 ExecutionContext* RTCDataChannel::executionContext() const
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerGlobalScope.cpp 80 String ServiceWorkerGlobalScope::scope(ExecutionContext* context)
85 CacheStorage* ServiceWorkerGlobalScope::caches(ExecutionContext* context)
186 MemoryCache::removeURLFromCache(this->executionContext(), completeURL(*it));
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioContext.h 229 virtual ExecutionContext* executionContext() const OVERRIDE FINAL;
246 // ExecutionContext calls stop twice.
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8XMLHttpRequestCustom.cpp 58 ExecutionContext* context = currentExecutionContext(info.GetIsolate());
169 ExceptionState exceptionState(ExceptionState::ExecutionContext, "open", "XMLHttpRequest", info.Holder(), info.GetIsolate());
182 ExecutionContext* context = currentExecutionContext(info.GetIsolate());
217 InspectorInstrumentation::willSendXMLHttpRequest(xmlHttpRequest->executionContext(), xmlHttpRequest->url());
219 ExceptionState exceptionState(ExceptionState::ExecutionContext, "send", "XMLHttpRequest", info.Holder(), info.GetIsolate());
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalDOMWindow.h 101 virtual ExecutionContext* executionContext() const OVERRIDE;
141 void focus(ExecutionContext* = 0);
143 void close(ExecutionContext* = 0);
318 // FIXME: This shouldn't be public once LocalDOMWindow becomes ExecutionContext.
LocalDOMWindow.cpp 50 #include "core/dom/ExecutionContext.h"
133 m_asyncOperationId = InspectorInstrumentation::traceAsyncOperationStarting(executionContext(), "postMessage");
149 InspectorInstrumentationCookie cookie = InspectorInstrumentation::traceAsyncOperationCompletedCallbackStarting(executionContext(), m_asyncOperationId);
525 ExecutionContext* LocalDOMWindow::executionContext() const
916 void LocalDOMWindow::focus(ExecutionContext* context)
947 void LocalDOMWindow::close(ExecutionContext* context)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestInterface.cpp 451 v8SetReturnValue(info, cppValue ? v8::Handle<v8::Value>(V8AbstractEventListener::cast(cppValue)->getListenerObject(impl->executionContext())) : v8::Handle<v8::Value>(v8::Null(info.GetIsolate())));
    [all...]
V8TestObject.cpp     [all...]
V8TestInterfaceNode.cpp 87 v8SetReturnValue(info, cppValue ? v8::Handle<v8::Value>(V8AbstractEventListener::cast(cppValue)->getListenerObject(impl->executionContext())) : v8::Handle<v8::Value>(v8::Null(info.GetIsolate())));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
JavaScriptSourceFrame.js 217 var currentExecutionContext = WebInspector.context.flavor(WebInspector.ExecutionContext);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.h 253 using HTMLElement::executionContext;
HTMLMediaElement.cpp 394 // destructed ActiveDOMObject::executionContext() returns 0.
395 if (ActiveDOMObject::executionContext())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.cpp 35 #include "core/dom/ExecutionContext.h"
80 const SecurityOrigin* origin = scriptState->executionContext()->securityOrigin();
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
methods.cpp 8 ExceptionState exceptionState(ExceptionState::ExecutionContext, "{{method.name}}", "{{interface_name}}", info.Holder(), info.GetIsolate());
217 {# [ConstructorCallWith=ExecutionContext] #}
218 {# [CallWith=ExecutionContext] #}
219 ExecutionContext* executionContext = currentExecutionContext(info.GetIsolate());
365 ExceptionState exceptionState(ExceptionState::ExecutionContext, "{{overloads.name}}", "{{interface_name}}", info.Holder(), info.GetIsolate());
441 ExceptionState exceptionState(ExceptionState::ExecutionContext, "{{method.name}}", "{{interface_name}}", info.Holder(), info.GetIsolate());
516 if (!scriptState->executionContext())
531 ExceptionState exceptionState(ExceptionState::ExecutionContext, "{{method.name}}", "{{cpp_class}}", scriptState->context()->Global(), scriptState->isolate());
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
ContentSecurityPolicy.cpp 144 void ContentSecurityPolicy::bindToExecutionContext(ExecutionContext* executionContext)
146 m_executionContext = executionContext;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTCue.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
InspectorIndexedDBAgent.cpp 105 virtual void handleEvent(ExecutionContext*, Event* event) OVERRIDE
145 ExecutionContext* context() const { return m_scriptState->executionContext(); }
165 virtual void handleEvent(ExecutionContext* context, Event* event) OVERRIDE
403 virtual void handleEvent(ExecutionContext*, Event* event) OVERRIDE
445 Document* document = toDocument(m_scriptState->executionContext());
703 virtual void handleEvent(ExecutionContext*, Event* event) OVERRIDE
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.h 599 virtual ExecutionContext* executionContext() const OVERRIDE FINAL;
    [all...]

Completed in 770 milliseconds

1 2 3 4 5 6 7 8 91011