HomeSort by relevance Sort by last modified time
    Searched refs:Singleton (Results 1 - 25 of 494) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/core/include/utils/
Singleton.h 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>
68 template<> Mutex Singleton< TYPE >::sLock(Mutex::PRIVATE);
    [all...]
  /external/chromium/webkit/glue/plugins/
plugin_list.h 24 static inline webkit::npapi::PluginList* Singleton() {
25 return webkit::npapi::PluginList::Singleton();
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/memory/
singleton_posix.h 26 class Singleton {
28 virtual ~Singleton() {}
42 static T* instance_; // Leaky singleton.
46 template <class T> T* Singleton<T>::instance_;
47 template <class T> pthread_once_t Singleton<T>::once_control_ =
singleton.h 30 class Singleton : private boost::noncopyable {
32 virtual ~Singleton() {}
48 template <class T> boost::scoped_ptr<T> Singleton<T>::instance;
49 template <class T> boost::once_flag Singleton<T>::flag = BOOST_ONCE_INIT;
68 class Singleton {
70 Singleton() : thread_checker_() {}
72 virtual ~Singleton() {}
  /frameworks/native/include/private/gui/
SyncFeatures.h 20 #include <utils/Singleton.h>
27 class SyncFeatures : public Singleton<SyncFeatures> {
28 friend class Singleton<SyncFeatures>;
ComposerService.h 23 #include <utils/Singleton.h>
41 // (It's not clear that using Singleton is useful here anymore.)
42 class ComposerService : public Singleton<ComposerService>
51 friend class Singleton<ComposerService>;
  /frameworks/base/libs/hwui/
DisplayListLogBuffer.h 20 #include <utils/Singleton.h>
27 class DisplayListLogBuffer: public Singleton<DisplayListLogBuffer> {
31 friend class Singleton<DisplayListLogBuffer>;
Extensions.h 22 #include <utils/Singleton.h>
33 class ANDROID_API Extensions: public Singleton<Extensions> {
63 friend class Singleton<Extensions>;
  /frameworks/native/services/connectivitymanager/
ConnectivityManager.h 20 #include <utils/Singleton.h>
24 class ConnectivityManager : public Singleton<ConnectivityManager> {
29 friend class Singleton<ConnectivityManager>;
  /external/chromium/chrome/browser/
crash_handler_host_linux_stub.cc 10 #include "base/memory/singleton.h"
37 return Singleton<GpuCrashHandlerHostLinux>::get();
48 return Singleton<PluginCrashHandlerHostLinux>::get();
59 return Singleton<RendererCrashHandlerHostLinux>::get();
70 return Singleton<PpapiCrashHandlerHostLinux>::get();
background_mode_manager_factory.cc 21 return Singleton<BackgroundModeManagerFactory>::get();
  /hardware/qcom/display/msm8960/libtilerenderer/
tilerenderer.h 20 #include <utils/Singleton.h>
27 class TileRenderer: public Singleton<TileRenderer> {
  /hardware/qcom/display/msm8x26/libtilerenderer/
tilerenderer.h 20 #include <utils/Singleton.h>
27 class TileRenderer: public Singleton<TileRenderer> {
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_state.cc 7 #include "base/memory/singleton.h"
18 return Singleton<BrowserAccessibilityState>::get();
  /frameworks/base/core/java/android/util/
Singleton.java 20 * Singleton helper class for lazily initialization.
22 * Modeled after frameworks/base/include/utils/Singleton.h
26 public abstract class Singleton<T> {
  /frameworks/native/include/ui/
GraphicBufferMapper.h 23 #include <utils/Singleton.h>
36 class GraphicBufferMapper : public Singleton<GraphicBufferMapper>
57 friend class Singleton<GraphicBufferMapper>;
  /frameworks/native/opengl/libs/EGL/
Loader.h 25 #include <utils/Singleton.h>
36 class Loader : public Singleton<Loader>
38 friend class Singleton<Loader>;
  /frameworks/native/services/surfaceflinger/EventLog/
EventLog.h 19 #include <utils/Singleton.h>
30 class EventLog : public Singleton<EventLog> {
72 friend class Singleton<EventLog>;
  /frameworks/native/services/surfaceflinger/RenderEngine/
GLExtensions.h 25 #include <utils/Singleton.h>
35 class GLExtensions : public Singleton<GLExtensions>
37 friend class Singleton<GLExtensions>;
  /external/chromium/crypto/
capi_util.cc 8 #include "base/memory/singleton.h"
16 return Singleton<CAPIUtilSingleton>::get();
26 friend class Singleton<CAPIUtilSingleton>;
  /external/chromium_org/crypto/
capi_util.cc 8 #include "base/memory/singleton.h"
16 return Singleton<CAPIUtilSingleton>::get();
26 friend class Singleton<CAPIUtilSingleton>;
  /hardware/qcom/display/msm8960/libqdutils/
comptype.h 34 #include <utils/Singleton.h>
50 class QCCompositionType : public Singleton <QCCompositionType>
  /hardware/qcom/display/msm8974/libqdutils/
comptype.h 34 #include <utils/Singleton.h>
50 class QCCompositionType : public Singleton <QCCompositionType>
  /hardware/qcom/display/msm8x26/libqdutils/
comptype.h 34 #include <utils/Singleton.h>
50 class QCCompositionType : public Singleton <QCCompositionType>
  /external/chromium/chrome/browser/chromeos/
brightness_bubble.cc 7 #include "base/memory/singleton.h"
25 return Singleton<BrightnessBubble>::get();

Completed in 412 milliseconds

1 2 3 4 5 6 7 8 91011>>