Home
last modified time | relevance | path

Searched refs:sInstance (Results 1 – 10 of 10) sorted by relevance

/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
DPresencePreferences.java37 private static PresencePreferences sInstance; field in PresencePreferences
53 if (null == sInstance) { in getInstance()
54 sInstance = new PresencePreferences(); in getInstance()
56 return sInstance; in getInstance()
DPollingsQueue.java47 private static PollingsQueue sInstance = null; field in PollingsQueue
49 if ((sInstance == null) && (context != null)) { in getInstance()
50 sInstance = new PollingsQueue(context); in getInstance()
53 return sInstance; in getInstance()
DCapabilityPolling.java137 private static CapabilityPolling sInstance = null; field in CapabilityPolling
139 if ((sInstance == null) && (context != null)) { in getInstance()
140 sInstance = new CapabilityPolling(context); in getInstance()
143 return sInstance; in getInstance()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowAccessibilityManager.java29 private static AccessibilityManager sInstance; field in ShadowAccessibilityManager
44 sInstance = null; in reset()
53 if (sInstance == null) { in getInstance()
54 sInstance = createInstance(context); in getInstance()
57 return sInstance; in getInstance()
/external/ims/rcs/rcsmanager/src/java/com/android/ims/internal/
DContactNumberUtils.java57 if(sInstance == null) { in getDefault()
58 sInstance = new ContactNumberUtils(); in getDefault()
61 return sInstance; in getDefault()
285 private static ContactNumberUtils sInstance = null; field in ContactNumberUtils
/external/skqp/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DSkottieRunner.java37 private static SkottieRunner sInstance; field in SkottieRunner
52 if (sInstance == null) { in getInstance()
53 sInstance = new SkottieRunner(); in getInstance()
55 return sInstance; in getInstance()
/external/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DSkottieRunner.java37 private static SkottieRunner sInstance; field in SkottieRunner
52 if (sInstance == null) { in getInstance()
53 sInstance = new SkottieRunner(); in getInstance()
55 return sInstance; in getInstance()
/external/libchrome/base/android/java/src/org/chromium/base/
DBuildInfo.java53 private static class Holder { private static BuildInfo sInstance = new BuildInfo(); } field in BuildInfo.Holder
84 return Holder.sInstance; in getInstance()
/external/apache-http/android/src/android/net/http/
DCertificateChainValidator.java56 private static final CertificateChainValidator sInstance = new CertificateChainValidator(); field in CertificateChainValidator.NoPreloadHolder
71 return NoPreloadHolder.sInstance; in getInstance()
/external/ims/rcs/rcsservice/src/com/android/service/ims/
DRcsStackAdaptor.java162 private static RcsStackAdaptor sInstance = null; field in RcsStackAdaptor
172 if ((sInstance == null) && (context != null)) { in getInstance()
173 sInstance = new RcsStackAdaptor(context); in getInstance()
176 return sInstance; in getInstance()