Home | History | Annotate | Download | only in base

Lines Matching refs:get

55 //   1. FooClass* ptr = Singleton<FooClass>::get();
58 // 3. Singleton<FooClass>::get()->Bar();
97 // (a) Every call to get(), operator->() and operator*() incurs some overhead
99 // initialized. You may wish to cache the result of get(); it will not
114 static Type* get() {
126 // Object isn't created yet, maybe we will get to create it, let's try...
131 // will ever get here. Threads might be spinning on us, and they will
136 // synchronization between different threads calling get().
169 return *get();
173 return get();
181 // created. We should only ever get here with a valid instance_ pointer.