HomeSort by relevance Sort by last modified time
    Searched defs:instance_ (Results 51 - 75 of 168) sorted by null

1 23 4 5 6 7

  /external/chromium_org/content/renderer/pepper/
plugin_object.h 35 PepperPluginInstanceImpl* instance() const { return instance_; }
77 PepperPluginInstanceImpl* instance_; member in class:content::PluginObject
resource_converter.h 99 PP_Instance instance_; member in class:content::ResourceConverterImpl
message_channel.h 77 PepperPluginInstanceImpl* instance() { return instance_; }
98 PepperPluginInstanceImpl* instance_; member in class:content::MessageChannel
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_socket_test/
echo_server.h 26 : instance_(instance),
53 pp::Instance* instance_; member in class:EchoServer
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_pepper_interface.h 33 virtual PP_Instance GetInstance() { return instance_; }
39 PP_Instance instance_; member in class:FakePepperInterface
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
pepper_interface_mock.h 52 PP_Instance instance_; member in class:PepperInterfaceMock
  /external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
testable_callback.h 62 PP_Instance instance_; member in class:TestableCallback
  /external/chromium_org/ppapi/utility/threading/
simple_thread.h 54 InstanceHandle instance_; member in class:pp::SimpleThread
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/memory/
singleton_posix.h 34 return instance_;
39 instance_ = new T();
42 static T* instance_; // Leaky singleton. member in class:i18n::phonenumbers::Singleton
46 template <class T> T* Singleton<T>::instance_; member in class:i18n::phonenumbers::Singleton
  /external/chromium_org/tools/clang/plugins/
ChromeClassTester.h 27 clang::CompilerInstance& instance() { return instance_; }
74 clang::CompilerInstance& instance_; member in class:ChromeClassTester
  /external/chromium_org/tools/relocation_packer/src/
debug.h 83 static Logger* instance_; member in class:relocation_packer::Logger
  /external/chromium_org/ui/base/test/
ui_controls_aura.cc 11 UIControlsAura* instance_ = NULL; member in namespace:ui_controls::__anon20546
27 return instance_->SendKeyPress(
40 return instance_->SendKeyPressNotifyWhenDone(
47 return instance_->SendMouseMove(x, y);
55 return instance_->SendMouseMoveNotifyWhenDone(x, y, task);
61 return instance_->SendMouseEvents(type, state);
69 return instance_->SendMouseEventsNotifyWhenDone(type, state, task);
75 return instance_->SendMouseClick(type);
80 instance_->RunClosureAfterAllPendingUIEvents(closure);
91 delete instance_;
    [all...]
  /external/chromium_org/ui/events/platform/
platform_event_source.cc 17 PlatformEventSource* PlatformEventSource::instance_ = NULL; member in class:ui::PlatformEventSource
22 CHECK(!instance_) << "Only one platform event source can be created.";
23 instance_ = this;
27 CHECK_EQ(this, instance_);
28 instance_ = NULL;
31 PlatformEventSource* PlatformEventSource::GetInstance() { return instance_; }
  /external/chromium_org/ui/ozone/
ozone_platform.cc 23 CHECK(!instance_) << "There should only be a single OzonePlatform.";
24 instance_ = this;
30 CHECK_EQ(instance_, this);
31 instance_ = NULL;
40 instance_->InitializeUI();
49 instance_->InitializeGPU();
54 CHECK(instance_) << "OzonePlatform is not initialized";
55 return instance_;
60 if (!instance_) {
69 CHECK_EQ(instance_, platform.release())
74 OzonePlatform* OzonePlatform::instance_; member in class:ui::OzonePlatform
    [all...]
  /external/chromium_org/ui/views_content_client/
views_content_client.h 70 HINSTANCE instance_; member in class:ui::ViewsContentClient
  /external/chromium_org/base/memory/
singleton.h 237 // instance_ pointer must acquire visibility over the singleton data.
238 base::subtle::AtomicWord value = base::subtle::Acquire_Load(&instance_);
241 ANNOTATE_HAPPENS_AFTER(&instance_);
247 &instance_, 0, base::internal::kBeingCreatedMarker) == 0) {
248 // instance_ was NULL and is now kBeingCreatedMarker. Only one thread
256 ANNOTATE_HAPPENS_BEFORE(&instance_);
257 // Releases the visibility over instance_ to the readers.
259 &instance_, reinterpret_cast<base::subtle::AtomicWord>(newval));
268 value = base::internal::WaitForInstance(&instance_);
271 ANNOTATE_HAPPENS_AFTER(&instance_);
285 static base::subtle::AtomicWord instance_; member in class:Singleton
290 instance_ = 0; member in class:Singleton
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/
chrome_shell_delegate.cc 36 ChromeShellDelegate* ChromeShellDelegate::instance_ = NULL; member in class:ChromeShellDelegate
40 instance_ = this;
45 if (instance_ == this)
46 instance_ = NULL;
  /external/chromium_org/chrome/browser/ui/cocoa/
task_manager_mac.h 115 static TaskManagerMac* instance_; member in class:TaskManagerMac
  /external/chromium_org/content/browser/frame_host/
navigation_entry_impl_unittest.cc 20 NavigationEntryTest() : instance_(NULL) {
27 instance_ = static_cast<SiteInstanceImpl*>(SiteInstance::Create(NULL));
30 instance_, 3,
45 SiteInstanceImpl* instance_; member in class:content::NavigationEntryTest
123 EXPECT_EQ(instance_, entry2_->site_instance());
124 entry1_->set_site_instance(instance_);
125 EXPECT_EQ(instance_, entry1_->site_instance());
  /external/chromium_org/content/browser/geolocation/
mock_location_provider.cc 19 MockLocationProvider* MockLocationProvider::instance_ = NULL; member in class:content::MockLocationProvider
74 : MockLocationProvider(&instance_),
121 return new MockLocationProvider(&MockLocationProvider::instance_);
  /external/chromium_org/content/browser/gpu/
browser_gpu_channel_host_factory.h 24 static BrowserGpuChannelHostFactory* instance() { return instance_; }
128 static BrowserGpuChannelHostFactory* instance_; member in class:content::BrowserGpuChannelHostFactory
  /external/chromium_org/content/child/npapi/
webplugin_ime_win.h 75 explicit ScopedLock(WebPluginIMEWin* instance) : instance_(instance) {
76 if (instance_)
77 instance_->Lock();
80 if (instance_)
81 instance_->Unlock();
85 WebPluginIMEWin* instance_; member in class:content::WebPluginIMEWin::ScopedLock
116 // member variable |instance_| to access a WebPluginIMEWIn instance. We lock
178 static WebPluginIMEWin* instance_; member in class:content::WebPluginIMEWin
  /external/chromium_org/media/ozone/
media_ozone_platform.cc 52 CHECK(!instance_) << "There should only be a single MediaOzonePlatform.";
53 instance_ = this;
57 CHECK_EQ(instance_, this);
58 instance_ = NULL;
63 if (!instance_)
65 return instance_;
76 if (instance_)
87 CHECK_EQ(instance_, platform.release());
91 MediaOzonePlatform* MediaOzonePlatform::instance_; member in class:media::MediaOzonePlatform
  /external/chromium_org/ppapi/utility/graphics/
paint_manager.h 269 Instance* instance_; member in class:pp::PaintManager
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32window.cc 39 HINSTANCE Win32Window::instance_ = NULL; member in class:talk_base::Win32Window
60 &instance_)) {
69 wcex.hInstance = instance_;
79 x, y, cx, cy, parent, NULL, instance_, this);
89 ::UnregisterClass(MAKEINTATOM(window_class_), instance_); local

Completed in 616 milliseconds

1 23 4 5 6 7