HomeSort by relevance Sort by last modified time
    Searched defs:m_isolate (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ArrayValue.h 38 ArrayValue() : m_isolate(0) { }
41 , m_isolate(isolate)
43 ASSERT(m_isolate);
61 v8::Isolate* m_isolate; member in class:WebCore::ArrayValue
CustomElementBinding.h 48 v8::Handle<v8::Object> prototype() { return m_prototype.newLocal(m_isolate); }
54 v8::Isolate* m_isolate; member in class:WebCore::CustomElementBinding
ScriptString.h 49 if (!m_isolate)
50 m_isolate = v8::Isolate::GetCurrent();
51 return m_isolate;
60 v8::Isolate* m_isolate; member in class:WebCore::FINAL
V8GarbageCollected.h 52 : m_isolate(isolate)
62 v8::Handle<v8::External> result = m_handle.newLocal(m_isolate);
72 v8::Isolate* isolate() { return m_isolate; }
82 v8::Isolate* m_isolate; member in class:WebCore::V8GarbageCollected
V8ObjectConstructor.h 51 : m_isolate(isolate)
54 V8PerIsolateData* data = V8PerIsolateData::from(m_isolate);
61 V8PerIsolateData* data = V8PerIsolateData::from(m_isolate);
71 v8::Isolate* m_isolate; member in class:WebCore::ConstructorMode
V8RecursionScope.h 63 : m_isolate(isolate)
66 V8PerIsolateData::from(m_isolate)->incrementRecursionLevel();
75 if (!V8PerIsolateData::from(m_isolate)->decrementRecursionLevel())
95 : m_isolate(isolate)
100 V8PerIsolateData::from(m_isolate)->incrementInternalScriptRecursionLevel();
107 V8PerIsolateData::from(m_isolate)->decrementInternalScriptRecursionLevel();
113 v8::Isolate* m_isolate; member in class:WebCore::V8RecursionScope::MicrotaskSuppression
120 v8::Isolate* m_isolate; member in class:WebCore::V8RecursionScope
ScriptController.h 151 v8::Isolate* isolate() const { return m_isolate; }
161 v8::Isolate* m_isolate; member in class:WebCore::ScriptController
ScriptValue.h 48 : m_isolate(0)
56 : m_isolate(scriptState->isolate())
64 : m_isolate(value.m_isolate)
78 if (!m_isolate)
79 m_isolate = v8::Isolate::GetCurrent();
80 return m_isolate;
86 m_isolate = value.m_isolate;
155 mutable v8::Isolate* m_isolate; member in class:WebCore::ScriptValue
    [all...]
V8WindowShell.h 112 v8::Isolate* m_isolate; member in class:WebCore::V8WindowShell
ScriptDebugServer.h 140 v8::Isolate* m_isolate; member in class:WebCore::ScriptDebugServer
V8AbstractEventListener.h 86 return m_listener.newLocal(m_isolate);
91 return m_listener.newLocal(m_isolate);
112 v8::Isolate* isolate() const { return m_isolate; }
153 v8::Isolate* m_isolate; member in class:WebCore::V8AbstractEventListener
WorkerScriptController.cpp 62 : m_isolate(v8::Isolate::New())
67 m_isolate->Enter();
68 V8Initializer::initializeWorker(m_isolate);
70 V8PerIsolateData::ensureInitialized(m_isolate);
72 m_interruptor = adoptPtr(new V8IsolateInterruptor(m_isolate));
88 V8PerIsolateData::dispose(m_isolate);
89 m_isolate->Exit();
90 m_isolate->Dispose();
94 explicit IsolateCleanupTask(v8::Isolate* isolate) : m_isolate(isolate) { }
96 v8::Isolate* m_isolate; member in class:WebCore::IsolateCleanupTask
147 V8DOMWrapper::associateObjectWithWrapper<V8WorkerGlobalScope>(PassRefPtrWillBeRawPtr<WorkerGlobalScope>(&m_workerGlobalScope), contextType, jsWorkerGlobalScope, m_isolate, WrapperConfiguration::Dependent); local
263 throwError(V8ThrowException::createError(v8GeneralError, m_errorEventFromImportedScript->message(), m_isolate), m_isolate); local
    [all...]
WorkerScriptController.h 95 v8::Isolate* isolate() const { return m_isolate; }
108 v8::Isolate* m_isolate; member in class:WebCore::WorkerScriptController
DOMWrapperMap.h 45 : m_isolate(isolate)
74 v8::UniquePersistent<v8::Object> unique(m_isolate, wrapper);
153 v8::Isolate* m_isolate; member in class:WebCore::DOMWrapperMap
Dictionary.h 186 v8::Isolate* m_isolate; member in class:WebCore::Dictionary
ExceptionState.h 67 , m_isolate(isolate) { }
75 , m_isolate(isolate) { ASSERT(m_context == ConstructionContext || m_context == EnumerationContext || m_context == IndexedSetterContext || m_context == IndexedGetterContext || m_context == IndexedDeletionContext); }
119 v8::Isolate* m_isolate; member in class:WebCore::ExceptionState
ScriptState.h 69 v8::Isolate* isolate() const { return m_isolate; }
76 v8::Handle<v8::Context> context() const { return m_context.newLocal(m_isolate); }
91 v8::Isolate* m_isolate; member in class:WebCore::ScriptState
V8PerContextData.h 69 v8::Handle<v8::Context> context() { return m_context.newLocal(m_isolate); }
113 v8::Isolate* m_isolate; member in class:WebCore::V8PerContextData
V8PerIsolateData.h 64 v8::Isolate* isolate() { return m_isolate; }
109 v8::Isolate* m_isolate; member in class:WebCore::V8PerIsolateData
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CustomXPathNSResolver.h 58 v8::Isolate* m_isolate; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.h 79 v8::Isolate* m_isolate; member in class:WebCore::JavaScriptCallFrame
  /external/chromium_org/third_party/WebKit/Source/core/animation/
EffectInputTest.cpp 25 , m_isolate(v8::Isolate::GetCurrent())
26 , m_scope(m_isolate)
33 v8::Isolate* m_isolate; member in class:__anon14929::AnimationEffectInputTest
42 v8::Handle<v8::Object> keyframe1 = v8::Object::New(m_isolate);
43 v8::Handle<v8::Object> keyframe2 = v8::Object::New(m_isolate);
50 jsKeyframes.append(Dictionary(keyframe1, m_isolate));
51 jsKeyframes.append(Dictionary(keyframe2, m_isolate));
62 v8::Handle<v8::Object> keyframe1 = v8::Object::New(m_isolate);
63 v8::Handle<v8::Object> keyframe2 = v8::Object::New(m_isolate);
70 jsKeyframes.append(Dictionary(keyframe1, m_isolate));
    [all...]
TimingInputTest.cpp 19 : m_isolate(v8::Isolate::GetCurrent())
20 , m_scope(m_isolate)
26 v8::Handle<v8::Object> timingInput = v8::Object::New(m_isolate);
28 Dictionary timingInputDictionary = Dictionary(v8::Handle<v8::Value>::Cast(timingInput), m_isolate);
34 v8::Handle<v8::Object> timingInput = v8::Object::New(m_isolate);
36 Dictionary timingInputDictionary = Dictionary(v8::Handle<v8::Value>::Cast(timingInput), m_isolate);
40 v8::Isolate* m_isolate; member in class:WebCore::AnimationTimingInputTest
167 v8::Handle<v8::Object> timingInput = v8::Object::New(m_isolate);
168 Dictionary timingInputDictionary = Dictionary(v8::Handle<v8::Value>::Cast(timingInput), m_isolate);
  /external/pdfium/fpdfsdk/include/javascript/
JS_Value.h 69 v8::Isolate* GetIsolate() {return m_isolate;}
73 v8::Isolate* m_isolate; member in class:CJS_Value
137 v8::Isolate* GetIsolate() {return m_isolate;}
140 v8::Isolate* m_isolate; member in class:CJS_Array
182 v8::Isolate* m_isolate; member in class:CJS_Date
JS_Runtime.h 52 operator IJS_Runtime*() {return (IJS_Runtime*)m_isolate;}
53 v8::Isolate* GetIsolate(){return m_isolate;};
54 void SetIsolate(v8::Isolate* isolate){m_isolate = isolate;}
64 v8::Isolate* m_isolate; member in class:CJS_Runtime

Completed in 255 milliseconds

1 2