HomeSort by relevance Sort by last modified time
    Searched refs:instance_ (Results 1 - 16 of 16) sorted by null

  /external/chromium/base/
singleton.h 119 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_, 0)))
185 static base::subtle::AtomicWord instance_; member in class:Singleton
190 instance_ = 0; member in class:Singleton
    [all...]
  /packages/inputmethods/PinyinIME/jni/share/
lpicache.cpp 22 LpiCache* LpiCache::instance_ = NULL; member in class:ime_pinyin::LpiCache
42 if (NULL == instance_) {
43 instance_ = new LpiCache();
44 assert(NULL != instance_);
46 return *instance_;
spellingtrie.cpp 30 SpellingTrie* SpellingTrie::instance_ = NULL; member in class:ime_pinyin::SpellingTrie
64 instance_ = NULL;
102 if (NULL != instance_) {
103 delete instance_;
104 instance_ = NULL;
232 if (NULL == instance_)
233 instance_ = new SpellingTrie();
235 return *instance_;
ngram.cpp 127 NGram* NGram::instance_ = NULL; member in class:ime_pinyin::NGram
155 if (NULL == instance_)
156 instance_ = new NGram();
157 return *instance_;
  /external/v8/src/
debug-agent.h 52 ASSERT(instance_ == NULL);
53 instance_ = this;
56 instance_ = NULL;
79 static DebuggerAgent* instance_; member in class:v8::internal::DebuggerAgent
heap-profiler.h 61 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...]
utils.h 245 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
debug-agent.cc 39 DebuggerAgent::instance_->DebuggerMessage(message);
43 DebuggerAgent* DebuggerAgent::instance_ = NULL; member in class:v8::internal::DebuggerAgent
serialize.cc 72 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
    [all...]
heap-profiler.cc 365 if (instance_ != NULL) {
366 accumulator->Add(":%p", static_cast<void*>(instance_));
ast.cc 41 ValidLeftHandSideSentinel ValidLeftHandSideSentinel::instance_; member in class:v8::internal::ValidLeftHandSideSentinel
ast.h 245 static ValidLeftHandSideSentinel* instance() { return &instance_; }
247 static ValidLeftHandSideSentinel instance_; member in class:v8::internal::ValidLeftHandSideSentinel
    [all...]
  /packages/inputmethods/PinyinIME/jni/include/
lpicache.h 29 static LpiCache *instance_; member in class:ime_pinyin::LpiCache
ngram.h 49 static NGram* instance_; member in class:ime_pinyin::NGram
spellingtrie.h 56 static SpellingTrie* instance_; member in class:ime_pinyin::SpellingTrie
  /external/webkit/WebKit/chromium/src/js/
DevToolsHostStub.js 109 if (!ProfilerStubHelper.instance_)
110 ProfilerStubHelper.instance_ = new ProfilerStubHelper();
111 return ProfilerStubHelper.instance_;

Completed in 192 milliseconds