HomeSort by relevance Sort by last modified time
    Searched defs:scriptState (Results 26 - 40 of 40) sorted by null

12

  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
CryptoResultImpl.cpp 35 #include "bindings/v8/ScriptState.h"
51 static WeakPtr<ScriptPromiseResolverWithContext> create(ScriptState* scriptState, CryptoResultImpl* result)
53 RefPtr<WeakResolver> p = adoptRef(new WeakResolver(scriptState, result));
65 WeakResolver(ScriptState* scriptState, CryptoResultImpl* result)
66 : ScriptPromiseResolverWithContext(scriptState)
105 PassRefPtr<CryptoResultImpl> CryptoResultImpl::create(ScriptState* scriptState)
107 return adoptRef(new CryptoResultImpl(scriptState));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
NPV8Object.cpp 80 static ScriptState* mainWorldScriptState(v8::Isolate* isolate, NPP npp, NPObject* npObject)
89 return ScriptState::from(context);
236 ScriptState* scriptState = mainWorldScriptState(isolate, npp, npObject);
237 if (!scriptState)
240 ScriptState::Scope scope(scriptState);
290 ScriptState* scriptState = mainWorldScriptState(isolate, npp, npObject);
291 if (!scriptState)
    [all...]
ScriptProfiler.cpp 122 ScriptState* scriptState = ScriptState::from(object->CreationContext());
123 return ScriptValue(scriptState, object);
230 // FIXME: This method should receive a ScriptState, from which we should retrieve an Isolate.
264 // visitNodeWrappers() should receive a ScriptState and retrieve an Isolate
265 // from the ScriptState.
V8GCController.cpp 435 RefPtr<ScriptState> scriptState = ScriptState::create(v8::Context::New(isolate), DOMWrapperWorld::create());
436 ScriptState::Scope scope(scriptState.get());
438 scriptState->disposePerContextData();
ScriptController.cpp 255 ScriptState* scriptState = ScriptState::forMainWorld(frame);
256 if (scriptState->contextIsEmpty())
259 ScriptState::Scope scope(scriptState);
263 scriptState->context()->Global()->Set(v8String(m_isolate, key), value);
362 ScriptState* scriptState = ScriptState::forMainWorld(frame)
    [all...]
V8Binding.cpp 149 PassRefPtrWillBeRawPtr<NodeFilter> toNodeFilter(v8::Handle<v8::Value> callback, v8::Handle<v8::Object> creationContext, ScriptState* scriptState)
153 v8::Handle<v8::Object> filterWrapper = toV8(filter, creationContext, scriptState->isolate()).As<v8::Object>();
155 RefPtrWillBeRawPtr<NodeFilterCondition> condition = V8NodeFilterCondition::create(callback, filterWrapper, scriptState);
    [all...]
SerializedScriptValue.cpp 931 Serializer(Writer& writer, MessagePortArray* messagePorts, ArrayBufferArray* arrayBuffers, WebBlobInfoArray* blobInfo, BlobDataHandleMap& blobDataHandles, v8::TryCatch& tryCatch, ScriptState* scriptState)
932 : m_scriptState(scriptState)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 67 Node* InjectedScriptHost::scriptValueAsNode(ScriptState* scriptState, ScriptValue value)
69 ScriptState::Scope scope(scriptState);
75 ScriptValue InjectedScriptHost::nodeAsScriptValue(ScriptState* scriptState, Node* node)
77 ScriptState::Scope scope(scriptState);
78 v8::Isolate* isolate = scriptState->isolate();
79 ExceptionState exceptionState(ExceptionState::ExecutionContext, "nodeAsScriptValue", "InjectedScriptHost", scriptState->context()->Global(), isolate)
    [all...]
V8WindowCustom.cpp 85 ScriptState* scriptState = ScriptState::current(info.GetIsolate());
124 action = adoptPtr(new ScheduledAction(scriptState, v8::Handle<v8::Function>::Cast(function), paramCount, params.get(), info.GetIsolate()));
131 action = adoptPtr(new ScheduledAction(scriptState, functionString, KURL(), info.GetIsolate()));
293 explicit DialogHandler(v8::Handle<v8::Value> dialogArguments, ScriptState* scriptState)
294 : m_scriptState(scriptState)
303 RefPtr<ScriptState> m_scriptState;
304 RefPtr<ScriptState> m_scriptStateForDialogFrame
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
ConsoleBase.cpp 46 void ConsoleBase::debug(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments)
48 internalAddMessage(LogMessageType, DebugMessageLevel, scriptState, arguments);
51 void ConsoleBase::error(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments)
53 internalAddMessage(LogMessageType, ErrorMessageLevel, scriptState, arguments);
56 void ConsoleBase::info(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments)
58 internalAddMessage(LogMessageType, InfoMessageLevel, scriptState, arguments);
61 void ConsoleBase::log(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 717 ScriptState* scriptState = ScriptState::forMainWorld(frame.get());
718 ASSERT(!scriptState->contextIsEmpty());
719 ScriptState::Scope scope(scriptState);
720 v8::Handle<v8::Object> global = scriptState->context()->Global();
InspectorDOMAgent.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
InspectorIndexedDBAgent.cpp 37 #include "bindings/v8/ScriptState.h"
138 ExecutableWithDatabase(ScriptState* scriptState)
139 : m_scriptState(scriptState) { }
145 ScriptState* scriptState() const { return m_scriptState.get(); }
147 RefPtr<ScriptState> m_scriptState;
195 IDBOpenDBRequest* idbOpenDBRequest = idbFactory->open(scriptState(), databaseName, exceptionState);
259 static PassRefPtr<DatabaseLoader> create(ScriptState* scriptState, PassRefPtr<RequestDatabaseCallback> requestCallback
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestObject.cpp 36 #include "bindings/v8/ScriptState.h"
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 267 milliseconds

12