Searched refs:instance_ (Results 1 - 10 of 10) sorted by relevance

/external/chromium/base/
H A Dsingleton.h119 base::subtle::AtomicWord value = base::subtle::NoBarrier_Load(&instance_);
122 ANNOTATE_HAPPENS_AFTER(&instance_);
127 if (base::subtle::Acquire_CompareAndSwap(&instance_,
130 // instance_ was NULL and is now kBeingCreatedMarker. Only one thread
138 ANNOTATE_HAPPENS_BEFORE(&instance_);
140 &instance_, reinterpret_cast<base::subtle::AtomicWord>(newval));
156 value = base::subtle::NoBarrier_Load(&instance_);
163 ANNOTATE_HAPPENS_AFTER(&instance_);
181 // created. We should only ever get here with a valid instance_ pointer.
183 base::subtle::NoBarrier_AtomicExchange(&instance_,
185 static base::subtle::AtomicWord instance_; member in class:Singleton
190 instance_ = 0; member in class:Singleton
[all...]
/external/v8/src/
H A Ddebug-agent.h52 ASSERT(instance_ == NULL);
53 instance_ = this;
56 instance_ = NULL;
79 static DebuggerAgent* instance_; member in class:v8::internal::DebuggerAgent
H A Dheap-profiler.h61 JSObjectsCluster() : constructor_(NULL), instance_(NULL) {}
63 : constructor_(constructor), instance_(NULL) {}
65 : constructor_(FromSpecialCase(special)), instance_(NULL) {}
67 : constructor_(constructor), instance_(instance) {}
79 (a.instance_ == b.instance_ ? 0 : (a.instance_ < b.instance_ ? -1 : 1))
87 bool can_be_coarsed() const { return instance_ != NULL; }
110 Object* instance_; member in class:v8::internal::BASE_EMBEDDED
[all...]
H A Dutils.h245 T instance_; member in class:v8::internal::StaticResource
256 , instance_(&resource->instance_) {
264 instance_ = NULL;
267 T* value() { return instance_; }
268 T* operator -> () { return instance_; }
272 T* instance_; member in class:v8::internal::Access
H A Ddebug-agent.cc39 DebuggerAgent::instance_->DebuggerMessage(message);
43 DebuggerAgent* DebuggerAgent::instance_ = NULL; member in class:v8::internal::DebuggerAgent
H A Dserialize.cc72 if (!instance_) instance_ = new ExternalReferenceTable();
73 return instance_;
87 static ExternalReferenceTable* instance_; member in class:v8::internal::ExternalReferenceTable
111 ExternalReferenceTable* ExternalReferenceTable::instance_ = NULL; member in class:v8::internal::ExternalReferenceTable
H A Dheap-profiler.cc365 if (instance_ != NULL) {
366 accumulator->Add(":%p", static_cast<void*>(instance_));
H A Dast.cc41 ValidLeftHandSideSentinel ValidLeftHandSideSentinel::instance_; member in class:v8::internal::ValidLeftHandSideSentinel
H A Dast.h245 static ValidLeftHandSideSentinel* instance() { return &instance_; }
247 static ValidLeftHandSideSentinel instance_; member in class:v8::internal::ValidLeftHandSideSentinel
/external/webkit/WebKit/chromium/src/js/
H A DDevToolsHostStub.js109 if (!ProfilerStubHelper.instance_)
110 ProfilerStubHelper.instance_ = new ProfilerStubHelper();
111 return ProfilerStubHelper.instance_;

Completed in 82 milliseconds