Home | History | Annotate | Download | only in utils

Lines Matching defs:Singleton

29 class ANDROID_API Singleton
48 ~Singleton() { };
49 Singleton() { };
52 Singleton(const Singleton&);
53 Singleton& operator = (const Singleton&);
60 * (eg: <TYPE>.cpp) to create the static instance of Singleton<>'s attributes,
61 * and avoid to have a copy of them in each compilation units Singleton<TYPE>
69 (::android::Singleton< TYPE >::sLock)(::android::Mutex::PRIVATE); \
70 template<> TYPE* ::android::Singleton< TYPE >::sInstance(0); \
71 template class ::android::Singleton< TYPE >;