Searched defs:instance_ (Results 1 - 25 of 26) sorted by relevance

12

/external/protobuf/src/google/protobuf/stubs/
H A Dsingleton.h45 return instance_;
48 delete instance_;
49 instance_ = NULL;
53 instance_ = new T();
56 static T* instance_; member in class:google::protobuf::internal::Singleton
63 T* Singleton<T>::instance_ = NULL; member in class:google::protobuf::internal::Singleton
/external/v8/src/tracing/
H A Dtracing-category-observer.h29 static TracingCategoryObserver* instance_; member in class:v8::tracing::TracingCategoryObserver
H A Dtracing-category-observer.cc14 TracingCategoryObserver* TracingCategoryObserver::instance_ = nullptr; member in class:v8::tracing::TracingCategoryObserver
17 TracingCategoryObserver::instance_ = new TracingCategoryObserver(); member in class:v8::tracing::TracingCategoryObserver
19 TracingCategoryObserver::instance_);
29 TracingCategoryObserver::instance_);
30 delete TracingCategoryObserver::instance_; member in class:v8::tracing::TracingCategoryObserver
/external/v8/tools/clang/blink_gc_plugin/
H A DBlinkGCPluginConsumer.h86 clang::CompilerInstance& instance_; member in class:BlinkGCPluginConsumer
H A DDiagnosticsReporter.h90 clang::CompilerInstance& instance_; member in class:DiagnosticsReporter
H A DRecordInfo.h165 : instance_(instance)
199 clang::CompilerInstance& instance() const { return instance_; }
202 clang::CompilerInstance& instance_; member in class:RecordCache
/external/webrtc/webrtc/base/
H A Dwin32window.h50 static HINSTANCE instance_; member in class:rtc::Win32Window
H A Dreferencecountedsingletonfactory.h48 scoped_ptr<Interface> instance_; member in class:rtc::ReferenceCountedSingletonFactory
58 ASSERT(instance_.get() != NULL);
63 return instance_.get();
69 ASSERT(instance_.get() != NULL);
89 : instance_(NULL),
99 return *instance_;
104 return instance_;
111 return instance_;
117 if (instance_) {
118 instance_
149 Interface* instance_; member in class:rtc::rcsf_ptr
[all...]
H A Dwin32window.cc22 HINSTANCE Win32Window::instance_ = NULL; member in class:rtc::Win32Window
43 &instance_)) {
52 wcex.hInstance = instance_;
62 x, y, cx, cy, parent, NULL, instance_, this);
72 ::UnregisterClass(MAKEINTATOM(window_class_), instance_); local
H A Dmessagequeue.cc35 MessageQueueManager* MessageQueueManager::instance_ = NULL; member in class:rtc::MessageQueueManager
40 if (!instance_)
41 instance_ = new MessageQueueManager;
42 return instance_;
46 return instance_ != NULL;
72 if (!instance_) return;
95 instance_ = NULL;
103 if (!instance_) return;
H A Dmessagequeue.h60 static MessageQueueManager* instance_; member in class:rtc::MessageQueueManager
/external/libchrome/base/power_monitor/
H A Dpower_monitor_device_source.h80 HMODULE instance_; member in class:base::PowerMonitorDeviceSource::PowerMessageWindow
/external/v8/tools/clang/plugins/
H A DChromeClassTester.h30 clang::CompilerInstance& instance() { return instance_; }
85 clang::CompilerInstance& instance_; member in class:ChromeClassTester
/external/libchrome/base/memory/
H A Dsingleton.h237 // instance_ pointer must acquire visibility over the singleton data.
238 subtle::AtomicWord value = subtle::Acquire_Load(&instance_);
244 if (subtle::Acquire_CompareAndSwap(&instance_, 0,
246 // instance_ was NULL and is now kBeingCreatedMarker. Only one thread
251 // Releases the visibility over instance_ to the readers.
252 subtle::Release_Store(&instance_,
262 value = internal::WaitForInstance(&instance_);
272 // created. We should only ever get here with a valid instance_ pointer.
273 Traits::Delete(reinterpret_cast<Type*>(subtle::NoBarrier_Load(&instance_)));
274 instance_
276 static subtle::AtomicWord instance_; member in class:base::Singleton
280 subtle::AtomicWord Singleton<Type, Traits, DifferentiatingType>::instance_ = 0; member in class:base::Singleton
[all...]
/external/v8/src/ic/
H A Dic-stats.cc16 base::LazyInstance<ICStats>::type ICStats::instance_ = member in class:v8::internal::ICStats
H A Dic-stats.h63 V8_INLINE static ICStats* instance() { return instance_.Pointer(); }
66 static base::LazyInstance<ICStats>::type instance_; member in class:v8::internal::ICStats
/external/webrtc/webrtc/system_wrappers/include/
H A Ddata_log_impl.h145 static DataLogImpl* instance_; member in class:webrtc::DataLogImpl
/external/libbrillo/brillo/
H A Dflag_helper.cc154 brillo::FlagHelper* instance_ = nullptr; member in namespace:brillo::__anon9917
165 if (!instance_)
166 instance_ = new FlagHelper();
168 return instance_;
172 delete instance_;
173 instance_ = nullptr;
/external/webrtc/webrtc/system_wrappers/source/
H A Ddata_log.cc28 DataLogImpl* DataLogImpl::instance_ = NULL; member in class:webrtc::DataLogImpl
325 new rtc::PlatformThread(DataLogImpl::Run, instance_, "DataLog")),
342 if (instance_ == NULL) {
343 instance_ = new DataLogImpl();
344 return instance_->Init();
346 ++instance_->counter_;
358 return instance_;
363 if (instance_ && instance_->counter_ > 1) {
364 --instance_
[all...]
/external/v8/src/wasm/
H A Dwasm-debug.cc30 WasmInstance instance_; member in class:__anon23506::InterpreterHandle
40 : instance_(debug_info->wasm_instance()->compiled_module()->module()),
41 interpreter_(GetBytesEnv(&instance_, debug_info), &allocator_),
45 instance_.mem_start =
47 CHECK(mem_buffer->byte_length()->ToUint32(&instance_.mem_size));
49 DCHECK_EQ(0, instance_.module->min_mem_pages);
50 instance_.mem_start = nullptr;
51 instance_.mem_size = 0;
66 const WasmModule* module() { return instance_.module; }
/external/pdfium/core/fxge/win32/
H A Dfx_win32_dwrite.cpp77 if (!instance_) {
78 instance_ = new CDwFontFileLoader();
80 return instance_;
82 static bool IsLoaderInitialized() { return !!instance_; }
87 static IDWriteFontFileLoader* instance_; member in class:final
338 IDWriteFontFileLoader* CDwFontFileLoader::instance_ = nullptr; member in class:CDwFontFileLoader
358 instance_ = nullptr;
/external/v8/src/libsampler/
H A Dsampler.cc295 static SamplerManager* instance() { return instance_.Pointer(); }
300 static base::LazyInstance<SamplerManager>::type instance_; member in class:v8::sampler::SamplerManager
304 base::LazyInstance<SamplerManager>::type SamplerManager::instance_ = member in class:v8::sampler::SamplerManager
/external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/
H A Dhidl_manager.h199 static HidlManager *instance_; member in class:android::hardware::wifi::supplicant::V1_0::implementation::HidlManager
H A Dhidl_manager.cpp375 HidlManager *HidlManager::instance_ = NULL; member in class:android::hardware::wifi::supplicant::V1_0::implementation::HidlManager
379 if (!instance_)
380 instance_ = new HidlManager();
381 return instance_;
386 if (instance_)
387 delete instance_;
388 instance_ = NULL;
/external/v8/src/
H A Dutils.h542 T instance_; member in class:v8::internal::StaticResource
553 , instance_(&resource->instance_) {
561 instance_ = NULL;
564 T* value() { return instance_; }
565 T* operator -> () { return instance_; }
569 T* instance_; member in class:v8::internal::Access

Completed in 4757 milliseconds

12