HomeSort by relevance Sort by last modified time
    Searched refs:Singleton (Results 1 - 25 of 152) 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 class Singleton< TYPE >;
    [all...]
  /external/chromium/webkit/glue/plugins/
plugin_list.h 24 static inline webkit::npapi::PluginList* Singleton() {
25 return webkit::npapi::PluginList::Singleton();
  /frameworks/base/libs/hwui/
DisplayListLogBuffer.h 20 #include <utils/Singleton.h>
27 class DisplayListLogBuffer: public Singleton<DisplayListLogBuffer> {
31 friend class Singleton<DisplayListLogBuffer>;
  /frameworks/native/include/private/gui/
ComposerService.h 23 #include <utils/Singleton.h>
37 class ComposerService : public Singleton<ComposerService>
44 friend class Singleton<ComposerService>;
  /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();
background_contents_service_factory.cc 22 return Singleton<BackgroundContentsServiceFactory>::get();
  /frameworks/native/include/ui/
GraphicBufferMapper.h 23 #include <utils/Singleton.h>
36 class GraphicBufferMapper : public Singleton<GraphicBufferMapper>
54 friend class Singleton<GraphicBufferMapper>;
GraphicBufferAllocator.h 28 #include <utils/Singleton.h>
40 class GraphicBufferAllocator : public Singleton<GraphicBufferAllocator>
86 friend class Singleton<GraphicBufferAllocator>;
  /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/base/services/sensorservice/
SensorDevice.h 24 #include <utils/Singleton.h>
36 class SensorDevice : public Singleton<SensorDevice> {
37 friend class Singleton<SensorDevice>;
SensorFusion.h 24 #include <utils/Singleton.h>
38 class SensorFusion : public Singleton<SensorFusion> {
39 friend class Singleton<SensorFusion>;
  /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,
  /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>
40 class PermissionCache : Singleton<PermissionCache> {
  /frameworks/native/include/gui/
SensorManager.h 27 #include <utils/Singleton.h>
48 public Singleton<SensorManager>
  /external/chromium/base/memory/
singleton_objc.h 5 // Support for using the Singleton<T> pattern with Objective-C objects. A
6 // SingletonObjC is the same as a Singleton, except the default traits are
8 // NSExampleType can be maintained as a singleton and accessed with:
15 // -[NSExampleType release] when Singleton's atexit routines run
16 // (see singleton.h).
35 #include "base/memory/singleton.h"
37 // Singleton traits usable to manage traditional Objective-C objects, which
52 // Exactly like Singleton, but without the DefaultSingletonObjCTraits as the
58 class SingletonObjC : public Singleton<Type, Traits, DifferentiatingType> {
  /frameworks/native/services/surfaceflinger/
GLExtensions.h 25 #include <utils/Singleton.h>
35 class GLExtensions : public Singleton<GLExtensions>
37 friend class Singleton<GLExtensions>;

Completed in 545 milliseconds

1 2 3 4 5 6 7