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

1 2 3 4 5 6 7

  /frameworks/native/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();
  /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 20 #include <utils/Singleton.h>
34 class Extensions: public Singleton<Extensions> {
56 friend class Singleton<Extensions>;
  /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/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>;
  /external/chromium/crypto/
capi_util.cc 8 #include "base/memory/singleton.h"
16 return Singleton<CAPIUtilSingleton>::get();
26 friend class Singleton<CAPIUtilSingleton>;
mac_security_services_lock.cc 7 #include "base/memory/singleton.h"
12 // This singleton pertains to Apple's wrappers over their own CSSM handles,
17 return Singleton<SecurityServicesSingleton,
  /hardware/qcom/display/libqdutils/
comptype.h 34 #include <utils/Singleton.h>
50 class QCCompositionType : public Singleton <QCCompositionType>
mdp_version.h 34 #include <utils/Singleton.h>
67 class MDPVersion : public Singleton <MDPVersion>
profiler.h 34 #include <utils/Singleton.h>
46 class CalcFps : public Singleton<CalcFps> {
  /external/chromium/chrome/browser/chromeos/
brightness_bubble.cc 7 #include "base/memory/singleton.h"
25 return Singleton<BrightnessBubble>::get();
volume_bubble.cc 7 #include "base/memory/singleton.h"
25 return Singleton<VolumeBubble>::get();
gview_request_interceptor_unittest.cc 73 webkit::npapi::PluginList::Singleton()->RegisterInternalPlugin(info);
74 webkit::npapi::PluginList::Singleton()->RefreshPlugins();
78 webkit::npapi::PluginList::Singleton()->UnregisterInternalPlugin(pdf_path_);
79 webkit::npapi::PluginList::Singleton()->RefreshPlugins();
85 webkit::npapi::PluginList::Singleton()->GetPluginInfoByPath(
89 is_loaded = webkit::npapi::PluginList::Singleton()->GetPluginInfoByPath(
96 is_loaded = webkit::npapi::PluginList::Singleton()->GetPluginInfoByPath(
133 webkit::npapi::PluginList::Singleton()->EnablePlugin(pdf_path_);
150 webkit::npapi::PluginList::Singleton()->DisablePlugin(pdf_path_);
  /external/chromium/chrome/browser/tabs/
pinned_tab_service_factory.cc 19 return Singleton<PinnedTabServiceFactory>::get();
  /external/chromium/chrome/common/
default_plugin.cc 21 webkit::npapi::PluginList::Singleton()->RegisterInternalPlugin(
  /frameworks/native/include/binder/
PermissionCache.h 24 #include <utils/Singleton.h>
41 class PermissionCache : Singleton<PermissionCache> {
  /frameworks/native/include/gui/
SensorManager.h 27 #include <utils/Singleton.h>
48 public Singleton<SensorManager>

Completed in 411 milliseconds

1 2 3 4 5 6 7