Searched defs:instance_ (Results 126 - 150 of 159) sorted by relevance

1234567

/external/chromium_org/ui/wm/core/
H A Dshadow_controller.cc148 static Impl* instance_; member in class:wm::ShadowController::Impl
154 ShadowController::Impl* ShadowController::Impl::instance_ = NULL; member in class:wm::ShadowController::Impl
158 if (!instance_)
159 instance_ = new Impl();
160 return instance_;
255 DCHECK_EQ(instance_, this);
257 instance_ = NULL;
/external/chromium_org/win8/viewer/
H A Dmetro_viewer_process_host.cc37 MetroViewerProcessHost* MetroViewerProcessHost::instance_ = NULL; member in class:win8::MetroViewerProcessHost
51 DCHECK(!instance_);
52 instance_ = this;
62 instance_ = NULL;
83 instance_ = NULL;
163 if (instance_) {
164 instance_->Send(
171 if (instance_)
172 instance_->Send(new MetroViewerHostMsg_MetroExit());
182 if (instance_) {
[all...]
/external/webrtc/src/system_wrappers/source/
H A Ddata_log.cc29 DataLogImpl* DataLogImpl::instance_ = NULL; member in class:webrtc::DataLogImpl
344 if (instance_ == NULL) {
345 instance_ = new DataLogImpl();
346 return instance_->Init();
348 ++instance_->counter_;
356 instance_,
369 return instance_;
374 if (instance_ && instance_->counter_ > 1) {
375 --instance_
[all...]
/external/chromium_org/content/browser/gpu/
H A Dbrowser_gpu_channel_host_factory.cc28 BrowserGpuChannelHostFactory* BrowserGpuChannelHostFactory::instance_ = NULL; member in class:content::BrowserGpuChannelHostFactory
229 DCHECK(!instance_);
230 instance_ = new BrowserGpuChannelHostFactory();
232 instance_->EstablishGpuChannel(CAUSE_FOR_GPU_LAUNCH_BROWSER_STARTUP,
238 DCHECK(instance_);
239 delete instance_;
240 instance_ = NULL;
/external/chromium_org/content/child/npapi/
H A Dplugin_instance.h365 scoped_refptr<PluginInstance> instance_; member in class:content::ScopedCurrentPluginEvent
H A Dwebplugin_delegate_impl.h132 PluginInstance* instance() { return instance_.get(); }
295 scoped_refptr<PluginInstance> instance_; member in class:content::WebPluginDelegateImpl
/external/chromium_org/ppapi/tests/
H A Dtest_post_message.cc139 instance_(instance) {
140 interface_->SetMinimumArrayBufferSizeForShmem(instance_, threshold);
143 interface_->SetMinimumArrayBufferSizeForShmem(instance_, 0);
147 PP_Instance instance_; member in class:__anon10219::ScopedArrayBufferSizeSetter
159 instance_->PostMessage(pp::Var("This isn't guaranteed to be received, but "
169 instance_->EvalScript(js_code);
179 instance_->EvalScript("window.pluginPostMessage = "
181 instance_->AddPostCondition("window.pluginPostMessage('') === undefined");
201 instance_->EvalScript(js_code);
210 instance_
[all...]
H A Dtest_case.h87 TestingInstance* instance() { return instance_; }
150 pp::MessageLoop background_loop(instance_);
151 ThreadedTestRunner<T> runner(instance_->pp_instance(),
159 TestingInstance* instance_; member in class:TestCase
180 : instance_(instance),
201 TestCase::QuitMainMessageLoop(instance_);
205 PP_Instance instance_; member in class:TestCase::ThreadedTestRunner
621 instance_->LogTest(#name, \
632 instance_->LogTest(#name"ForceAsync", \
641 instance_
[all...]
/external/chromium_org/remoting/client/plugin/
H A Dpepper_packet_socket_factory.cc133 pp::InstanceHandle instance_; member in class:remoting::__anon10375::UdpPacketSocket
169 : instance_(instance),
197 instance_, local_address_, &pp_local_address, min_port_)) {
232 instance_, local_address_, &pp_local_address, min_port_)) {
277 if (!SocketAddressToPpNetAddress(instance_, address, &pp_address)) {
/external/chromium_org/ui/keyboard/
H A Dkeyboard_controller.cc249 KeyboardController* KeyboardController::instance_ = NULL; member in class:keyboard::KeyboardController
275 if (instance_ && instance_ != controller)
276 delete instance_;
277 instance_ = controller;
282 return instance_;
/external/chromium_org/chrome/browser/devtools/device/
H A Dandroid_device_manager.cc403 AndroidDeviceManager::HandlerThread::instance_ = NULL; member in class:AndroidDeviceManager::HandlerThread
409 if (!instance_)
411 return instance_;
416 instance_ = this;
439 instance_ = NULL;
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Dincident_reporting_service_unittest.cc158 instance_(new TestIncidentReportingService(
240 instance_->GetAddIncidentCallback(profile).Run(MakeTestIncident().Pass());
246 instance_->RegisterDelayedAnalysisCallback(
288 scoped_ptr<TestIncidentReportingService> instance_; member in class:IncidentReportingServiceTest
382 ASSERT_TRUE(instance_);
502 ASSERT_FALSE(instance_->IsProcessingReport());
528 ASSERT_FALSE(instance_->IsProcessingReport());
545 ASSERT_FALSE(instance_->IsProcessingReport());
567 ASSERT_FALSE(instance_->IsProcessingReport());
592 ASSERT_FALSE(instance_
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dtask_manager_view.cc246 static TaskManagerView* instance_; member in class:__anon5368::TaskManagerView
254 TaskManagerView* TaskManagerView::instance_ = NULL; member in class:__anon5368::TaskManagerView
472 if (instance_) {
474 instance_->GetWidget()->Activate();
477 instance_ = new TaskManagerView(desktop_type);
484 DialogDelegate::CreateDialogWidget(instance_, window, NULL);
485 instance_->InitAlwaysOnTopState();
486 instance_->model_->StartUpdating();
495 views::HWNDForWidget(instance_->GetWidget()));
498 instance_
[all...]
/external/chromium_org/content/browser/geolocation/
H A Dnetwork_location_provider_unittest.cc56 CHECK(instance_);
57 return instance_;
61 CHECK(!instance_);
62 instance_ = new MockWifiDataProvider;
63 return instance_;
97 CHECK(this == instance_);
98 instance_ = NULL;
101 static MockWifiDataProvider* instance_; member in class:content::MockWifiDataProvider
109 MockWifiDataProvider* MockWifiDataProvider::instance_ = NULL; member in class:content::MockWifiDataProvider
/external/chromium_org/content/browser/shared_worker/
H A Dshared_worker_service_impl.cc130 : instance_(instance.Pass()) {}
132 SharedWorkerInstance* instance() { return instance_.get(); }
133 SharedWorkerInstance* release_instance() { return instance_.release(); }
172 scoped_ptr<SharedWorkerInstance> instance_; member in class:content::SharedWorkerServiceImpl::SharedWorkerPendingInstance
188 instance_(instance) {}
202 worker_process_id_, worker_route_id_, instance_);
215 const SharedWorkerInstance instance_; member in class:content::SharedWorkerServiceImpl::SharedWorkerReserver
/external/chromium_org/content/shell/browser/
H A Dwebkit_test_controller.cc193 WebKitTestController* WebKitTestController::instance_ = NULL; member in class:content::WebKitTestController
197 DCHECK(instance_);
198 return instance_;
207 CHECK(!instance_);
208 instance_ = this;
229 CHECK(instance_ == this);
233 instance_ = NULL;
/external/chromium_org/mojo/services/view_manager/
H A Dview_manager_unittest.cc70 static bool IsInInitialState() { return instance_ == NULL; }
74 if (!instance_)
76 ViewManagerProxy* instance = instance_;
77 instance_ = NULL;
248 DCHECK(!instance_);
249 instance_ = instance;
284 static ViewManagerProxy* instance_; member in class:mojo::service::__anon8827::ViewManagerProxy
306 ViewManagerProxy* ViewManagerProxy::instance_ = NULL; member in class:mojo::service::__anon8827::ViewManagerProxy
/external/chromium_org/native_client_sdk/src/tests/nacl_io_socket_test/
H A Dsocket_test.cc119 SocketTestWithServer() : instance_(PSGetInstanceId()) {
138 loop_ = pp::MessageLoop(&instance_);
167 pp::Instance instance_; member in class:__anon8946::SocketTestWithServer
/external/chromium_org/pdf/
H A Dinstance.h526 Instance* instance_; member in class:chrome_pdf::PDFScriptableObject
/external/chromium_org/v8/src/
H A Dsampler.cc503 if (instance_ == NULL) {
506 instance_ = new SamplerThread(sampler->interval());
511 DCHECK(!instance_->active_samplers_.Contains(sampler));
512 DCHECK(instance_->interval_ == sampler->interval());
513 instance_->active_samplers_.Add(sampler);
515 if (need_to_start) instance_->StartSynchronously();
524 bool removed = instance_->active_samplers_.RemoveElement(sampler);
530 if (instance_->active_samplers_.is_empty()) {
531 instance_to_remove = instance_;
532 instance_
563 static SamplerThread* instance_; member in class:v8::internal::SamplerThread
573 SamplerThread* SamplerThread::instance_ = NULL; member in class:v8::internal::SamplerThread
[all...]
/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_dwrite.cpp59 if (instance_ == NULL) {
60 instance_ = FX_NEW CDwFontFileLoader();
61 return instance_;
63 return instance_;
67 return instance_ != NULL;
72 static IDWriteFontFileLoader* instance_; member in class:CDwFontFileLoader
339 IDWriteFontFileLoader* CDwFontFileLoader::instance_ = NULL; member in class:CDwFontFileLoader
363 instance_ = NULL;
/external/chromium_org/ash/
H A Dshell.h616 static Shell* instance_; member in class:ash::Shell
/external/chromium_org/native_client_sdk/src/examples/api/video_decode/
H A Dvideo_decode.cc91 LogError(MyInstance* instance) : instance_(instance) {}
94 instance_->console_if_->Log(
95 instance_->pp_instance(), PP_LOGLEVEL_ERROR, pp::Var(msg).pp_var());
104 MyInstance* instance_; member in class:__anon8890::MyInstance::LogError
177 MyInstance* instance_; member in class:__anon8890::Decoder
235 : instance_(instance),
347 instance_->PaintPicture(this, picture);
/external/chromium_org/ppapi/examples/ime/
H A Dime.cc127 : instance_(instance),
137 font_ = pp::Font_Dev(instance_, desc);
384 pp::Instance* instance_; member in class:MyTextField
/external/chromium_org/ppapi/examples/video_decode/
H A Dvideo_decode.cc92 LogError(MyInstance* instance) : instance_(instance) {}
95 instance_->console_if_->Log(
96 instance_->pp_instance(), PP_LOGLEVEL_ERROR, pp::Var(msg).pp_var());
105 MyInstance* instance_; member in class:__anon10068::MyInstance::LogError
178 MyInstance* instance_; member in class:__anon10068::Decoder
236 : instance_(instance),
348 instance_->PaintPicture(this, picture);

Completed in 3100 milliseconds

1234567