Searched defs:Singleton (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/util/
H A DSingleton.java20 * Singleton helper class for lazily initialization.
22 * Modeled after frameworks/base/include/utils/Singleton.h
26 public abstract class Singleton<T> { class
/frameworks/native/include/utils/
H A DSingleton.h29 class ANDROID_API Singleton class in namespace:android
48 ~Singleton() { };
49 Singleton() { }; function in class:android::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>
68 template<> Mutex Singleton< TYP
[all...]

Completed in 2221 milliseconds