HomeSort by relevance Sort by last modified time
    Searched refs:GetCurrent (Results 1 - 25 of 171) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/ui/gl/
scoped_binders.cc 13 : state_restorer_(!GLContext::GetCurrent()
15 : GLContext::GetCurrent()->GetGLStateRestorer()),
24 DCHECK(!!GLContext::GetCurrent());
25 DCHECK_EQ(state_restorer_, GLContext::GetCurrent()->GetGLStateRestorer());
33 : state_restorer_(!GLContext::GetCurrent()
35 : GLContext::GetCurrent()->GetGLStateRestorer()),
57 DCHECK(!!GLContext::GetCurrent());
58 DCHECK_EQ(state_restorer_, GLContext::GetCurrent()->GetGLStateRestorer());
scoped_make_current.cc 15 : previous_context_(gfx::GLContext::GetCurrent()),
16 previous_surface_(gfx::GLSurface::GetCurrent()),
  /external/chromium_org/ppapi/api/
ppb_message_loop.idl 73 * using the GetCurrent() function.
149 PP_Resource GetCurrent();
  /external/chromium_org/ppapi/c/
ppb_message_loop.h 91 * using the GetCurrent() function.
165 PP_Resource (*GetCurrent)(void);
  /external/chromium_org/ppapi/cpp/
message_loop.h 78 /// using the GetCurrent() function.
152 static MessageLoop GetCurrent();
message_loop.cc 50 MessageLoop MessageLoop::GetCurrent() {
54 get_interface<PPB_MessageLoop>()->GetCurrent());
  /external/chromium_org/chrome/renderer/extensions/
scoped_persistent.h 73 return v8::Isolate::GetCurrent();
78 return v8::Isolate::GetCurrent();
82 return v8::Isolate::GetCurrent();
chrome_v8_context_set.h 54 // Gets the ChromeV8Context corresponding to v8::Context::GetCurrent(), or
56 ChromeV8Context* GetCurrent() const;
v8_schema_registry.cc 58 GetOrCreateContext(v8::Isolate::GetCurrent()),
68 v8::Isolate* isolate = v8::Isolate::GetCurrent();
85 return maybe_schema->second.newLocal(v8::Isolate::GetCurrent());
87 v8::Isolate* isolate = v8::Isolate::GetCurrent();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8EventListenerList.cpp 42 v8::Handle<v8::Context> context = v8::Context::GetCurrent();
V8HiddenPropertyName.cpp 49 v8::Isolate* isolate = v8::Isolate::GetCurrent(); \
76 v8::Isolate* isolate = v8::Isolate::GetCurrent();
ScriptProfiler.cpp 60 v8::Isolate* isolate = v8::Isolate::GetCurrent();
70 v8::Isolate* isolate = v8::Isolate::GetCurrent();
98 v8::Isolate* isolate = v8::Isolate::GetCurrent();
135 v8::Isolate* isolate = v8::Isolate::GetCurrent();
187 v8::Isolate::GetCurrent()->GetHeapProfiler()->StartTrackingHeapObjects();
225 return v8::Isolate::GetCurrent()->GetHeapProfiler()->GetHeapStats(&heapStatsStream);
230 v8::Isolate::GetCurrent()->GetHeapProfiler()->StopTrackingHeapObjects();
236 v8::Isolate* isolate = v8::Isolate::GetCurrent();
259 v8::Isolate* isolate = v8::Isolate::GetCurrent();
269 v8::Isolate* isolate = v8::Isolate::GetCurrent();
    [all...]
V8PerContextData.h 86 return !boilerplate.isEmpty() ? boilerplate.newLocal(v8::Isolate::GetCurrent())->Clone() : createWrapperFromCacheSlowCase(type);
93 return function.newLocal(v8::Isolate::GetCurrent());
119 , m_isolate(v8::Isolate::GetCurrent())
ArrayValue.cpp 64 ASSERT(m_isolate == v8::Isolate::GetCurrent());
DOMDataStore.cpp 42 , m_wrapperMap(v8::Isolate::GetCurrent()) // FIXME Don't call GetCurrent twice.
ScriptString.cpp 38 v8::Isolate* isolate = v8::Isolate::GetCurrent();
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebArrayBuffer.cpp 76 return toV8(m_private.get(), v8::Handle<v8::Object>(), v8::Isolate::GetCurrent());
81 if (!V8ArrayBuffer::HasInstanceInAnyWorld(value, v8::Isolate::GetCurrent()))
  /external/chromium_org/third_party/WebKit/Source/web/
WebBlob.cpp 54 if (V8Blob::HasInstanceInAnyWorld(value, v8::Isolate::GetCurrent())) {
84 return toV8(m_private.get(), v8::Handle<v8::Object>(), v8::Isolate::GetCurrent());
WebSerializedScriptValue.cpp 49 WebSerializedScriptValue serializedValue = SerializedScriptValue::create(value, 0, 0, didThrow, v8::Isolate::GetCurrent());
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestCallback.cpp 52 v8::Isolate* isolate = v8::Isolate::GetCurrent();
73 v8::Isolate* isolate = v8::Isolate::GetCurrent();
102 v8::Isolate* isolate = v8::Isolate::GetCurrent();
138 v8::Isolate* isolate = v8::Isolate::GetCurrent();
167 v8::Isolate* isolate = v8::Isolate::GetCurrent();
196 v8::Isolate* isolate = v8::Isolate::GetCurrent();
225 v8::Isolate* isolate = v8::Isolate::GetCurrent();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CustomSQLStatementErrorCallback.cpp 48 v8::Isolate* isolate = v8::Isolate::GetCurrent();
  /external/chromium_org/v8/test/cctest/
test-decls.cc 55 Isolate* isolate = Isolate::GetCurrent();
119 Isolate* isolate = Isolate::GetCurrent();
147 HandleScope scope(Isolate::GetCurrent());
229 HandleScope scope(Isolate::GetCurrent());
284 HandleScope scope(Isolate::GetCurrent());
338 HandleScope scope(Isolate::GetCurrent());
428 HandleScope scope(Isolate::GetCurrent());
520 HandleScope scope(Isolate::GetCurrent());
549 HandleScope scope(Isolate::GetCurrent());
612 HandleScope scope(Isolate::GetCurrent());
    [all...]
test-global-object.cc 37 HandleScope scope(Isolate::GetCurrent());
  /external/chromium_org/webkit/child/
webkit_child_helpers.cc 32 v8::Isolate::GetCurrent()->GetHeapStatistics(&stat);
  /external/chromium_org/ppapi/tests/
test_message_loop.cc 37 pp::MessageLoop::GetCurrent().pp_resource());
55 pp::MessageLoop::GetCurrent().PostWork(callback_factory_.NewCallback(

Completed in 1629 milliseconds

1 2 3 4 5 6 7