HomeSort by relevance Sort by last modified time
    Searched defs:m_scope (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerConsole.h 66 RawPtrWillBeMember<WorkerGlobalScope> m_scope; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
SerializedScriptValueTest.cpp 21 : m_scope(v8::Isolate::GetCurrent())
25 v8::Isolate* isolate() const { return m_scope.isolate(); }
26 v8::Handle<v8::Object> creationContext() const { return m_scope.scriptState()->context()->Global(); }
29 V8TestingScope m_scope; member in class:blink::SerializedScriptValueTest
V8ScriptRunnerTest.cpp 20 V8ScriptRunnerTest() : m_scope(v8::Isolate::GetCurrent()) { }
38 return m_scope.isolate();
87 V8TestingScope m_scope; member in class:blink::__anon15534::V8ScriptRunnerTest
ScriptPromiseTest.cpp 77 : m_scope(v8::Isolate::GetCurrent())
84 createClosure(callback, v8::Undefined(m_scope.isolate()), m_scope.isolate());
90 ScriptState* scriptState() const { return m_scope.scriptState(); }
91 v8::Isolate* isolate() const { return m_scope.isolate(); }
95 V8TestingScope m_scope; member in class:blink::__anon15527::ScriptPromiseTest
ScriptStreamerTest.cpp 64 : m_scope(v8::Isolate::GetCurrent())
75 ScriptState* scriptState() const { return m_scope.scriptState(); }
76 v8::Isolate* isolate() const { return m_scope.isolate(); }
120 V8TestingScope m_scope; member in class:blink::__anon15528::ScriptStreamingTest
146 ScriptStreamer::startStreaming(pendingScript(), m_settings.get(), m_scope.scriptState(), PendingScript::ParsingBlocking);
177 ScriptStreamer::startStreaming(pendingScript(), m_settings.get(), m_scope.scriptState(), PendingScript::ParsingBlocking);
209 ScriptStreamer::startStreaming(pendingScript(), m_settings.get(), m_scope.scriptState(), PendingScript::ParsingBlocking);
237 ScriptStreamer::startStreaming(pendingScript(), m_settings.get(), m_scope.scriptState(), PendingScript::ParsingBlocking);
264 ScriptStreamer::startStreaming(pendingScript(), m_settings.get(), m_scope.scriptState(), PendingScript::ParsingBlocking);
V8BindingTest.cpp 27 : m_scope(v8::Isolate::GetCurrent())
37 return V8ValueTraits<T>::toV8Value(value, m_scope.scriptState()->context()->Global(), m_scope.isolate());
55 V8TestingScope m_scope; member in class:blink::__anon15531::V8ValueTraitsTest
287 ScriptValue value(m_scope.scriptState(), v8::Number::New(m_scope.isolate(), 1234));
294 v8::Local<v8::Value> localValue(v8::Number::New(m_scope.isolate(), 1234));
295 v8::Handle<v8::Value> handleValue(v8::Number::New(m_scope.isolate(), 5678));
304 v8::Handle<v8::Array> v8StringArray = v8::Array::New(m_scope.isolate(), 2);
309 Vector<String> stringVector = toImplArray<String>(v8StringArray, 0, m_scope.isolate(), exceptionState)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
EffectInputTest.cpp 26 , m_scope(m_isolate)
36 V8TestingScope m_scope; member in class:__anon15616::AnimationEffectInputTest
TimingInputTest.cpp 20 , m_scope(m_isolate)
43 V8TestingScope m_scope; member in class:blink::AnimationTimingInputTest
AnimationTest.cpp 44 , m_scope(m_isolate)
61 V8TestingScope m_scope; member in class:blink::AnimationAnimationV8Test
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleResolver.h 57 const TreeScope& treeScope() const { return *m_scope; }
75 : m_scope(scope)
79 RawPtrWillBeMember<TreeScope> m_scope; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/testing/
PrivateScriptTestTest.cpp 24 : m_scope(v8::Isolate::GetCurrent())
36 v8::Isolate* isolate() const { return m_scope.isolate(); }
40 V8TestingScope m_scope; member in class:blink::__anon15801::PrivateScriptTestTest
  /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/
IDBBindingUtilitiesTest.cpp 92 : m_scope(v8::Isolate::GetCurrent())
96 ScriptState* scriptState() const { return m_scope.scriptState(); }
99 V8TestingScope m_scope; member in class:__anon15538::IDBKeyFromValueAndKeyPathTest
  /external/deqp/framework/randomshaders/
rsgStatement.hpp 106 VariableScope m_scope; member in class:rsg::BlockStatement
  /external/lldb/include/lldb/Symbol/
Variable.h 89 return m_scope;
170 lldb::ValueType m_scope; // global, parameter, local member in class:lldb_private::Variable
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBRequestTest.cpp 55 : m_scope(v8::Isolate::GetCurrent())
58 m_scope.scriptState()->setExecutionContext(m_executionContext.get());
63 m_scope.scriptState()->setExecutionContext(0);
66 v8::Isolate* isolate() const { return m_scope.isolate(); }
67 ScriptState* scriptState() const { return m_scope.scriptState(); }
68 ExecutionContext* executionContext() const { return m_scope.scriptState()->executionContext(); }
71 V8TestingScope m_scope; member in class:blink::__anon15820::IDBRequestTest
IDBTransactionTest.cpp 49 : m_scope(v8::Isolate::GetCurrent())
52 m_scope.scriptState()->setExecutionContext(m_executionContext.get());
57 m_scope.scriptState()->setExecutionContext(0);
60 v8::Isolate* isolate() const { return m_scope.isolate(); }
61 ScriptState* scriptState() const { return m_scope.scriptState(); }
62 ExecutionContext* executionContext() { return m_scope.scriptState()->executionContext(); }
70 V8TestingScope m_scope; member in class:blink::__anon15821::IDBTransactionTest
  /external/chromium_org/third_party/WebKit/Source/core/streams/
ReadableStreamTest.cpp 87 , m_scope(scriptState())
113 ScriptState::Scope m_scope; member in class:blink::ReadableStreamTest
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.h 295 : m_scope(view->m_inUpdateScrollbars, true)
298 TemporaryChange<bool> m_scope; member in class:blink::ScrollView::InUpdateScrollbarsScope
  /external/lldb/source/Symbol/
Variable.cpp 52 m_scope(scope),
114 if (m_scope != eValueTypeInvalid)
117 switch (m_scope)
122 default: *s << "??? (" << m_scope << ')'; local
276 switch (m_scope)
    [all...]
  /external/llvm/test/Bindings/Ocaml/
vmcore.ml 1077 let m_scope = mdnode context [| |] in var
    [all...]

Completed in 2964 milliseconds