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

1 2 3 4 5 6 7 8 91011

  /packages/apps/Camera2/src/android/util/
CameraPerformanceTracker.java 37 private static CameraPerformanceTracker sInstance;
63 if (sInstance == null) {
64 sInstance = new CameraPerformanceTracker();
69 sInstance.mAppStartTime = currentTime;
72 sInstance.mFirstPreviewFrameLatencyWarmStart = UNSET;
75 sInstance.mAppResumeTime = currentTime;
79 if (sInstance.mFirstPreviewFrameLatencyColdStart == UNSET) {
81 sInstance.mFirstPreviewFrameLatencyColdStart =
82 currentTime - sInstance.mAppStartTime;
85 sInstance.mFirstPreviewFrameLatencyWarmStart
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_scoring.cpp 20 const TypingScoring TypingScoring::sInstance;
typing_suggest_policy.cpp 20 const TypingSuggestPolicy TypingSuggestPolicy::sInstance;
typing_traversal.cpp 23 const TypingTraversal TypingTraversal::sInstance;
typing_suggest_policy.h 34 static const TypingSuggestPolicy *getInstance() { return &sInstance; }
52 static const TypingSuggestPolicy sInstance;
  /frameworks/base/core/java/android/text/method/
DateKeyListener.java 43 if (sInstance != null)
44 return sInstance;
46 sInstance = new DateKeyListener();
47 return sInstance;
61 private static DateKeyListener sInstance;
DateTimeKeyListener.java 43 if (sInstance != null)
44 return sInstance;
46 sInstance = new DateTimeKeyListener();
47 return sInstance;
61 private static DateTimeKeyListener sInstance;
HideReturnsTransformationMethod.java 44 if (sInstance != null)
45 return sInstance;
47 sInstance = new HideReturnsTransformationMethod();
48 return sInstance;
51 private static HideReturnsTransformationMethod sInstance;
SingleLineTransformationMethod.java 45 if (sInstance != null)
46 return sInstance;
48 sInstance = new SingleLineTransformationMethod();
49 return sInstance;
52 private static SingleLineTransformationMethod sInstance;
TimeKeyListener.java 43 if (sInstance != null)
44 return sInstance;
46 sInstance = new TimeKeyListener();
47 return sInstance;
61 private static TimeKeyListener sInstance;
  /frameworks/base/services/core/java/com/android/server/
DisplayThread.java 28 private static DisplayThread sInstance;
36 if (sInstance == null) {
37 sInstance = new DisplayThread();
38 sInstance.start();
39 sHandler = new Handler(sInstance.getLooper());
46 return sInstance;
FgThread.java 30 private static FgThread sInstance;
38 if (sInstance == null) {
39 sInstance = new FgThread();
40 sInstance.start();
41 sHandler = new Handler(sInstance.getLooper());
48 return sInstance;
IoThread.java 27 private static IoThread sInstance;
35 if (sInstance == null) {
36 sInstance = new IoThread();
37 sInstance.start();
38 sHandler = new Handler(sInstance.getLooper());
45 return sInstance;
UiThread.java 27 private static UiThread sInstance;
35 if (sInstance == null) {
36 sInstance = new UiThread();
37 sInstance.start();
38 sHandler = new Handler(sInstance.getLooper());
45 return sInstance;
  /frameworks/base/tools/layoutlib/bridge/src/android/view/inputmethod/
InputMethodManager_Accessor.java 25 InputMethodManager.sInstance = null;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
Clock.java 22 private static Clock sInstance = INSTANCE;
25 return sInstance;
30 sInstance = clock;
35 sInstance = INSTANCE;
  /packages/apps/Stk/src/com/android/stk/
StkDigitsKeyListener.java 37 if (sInstance != null) {
38 return sInstance;
40 sInstance = new StkDigitsKeyListener();
41 return sInstance;
53 private static StkDigitsKeyListener sInstance;
  /frameworks/base/core/java/com/android/internal/os/
BackgroundThread.java 26 private static BackgroundThread sInstance;
34 if (sInstance == null) {
35 sInstance = new BackgroundThread();
36 sInstance.start();
37 sHandler = new Handler(sInstance.getLooper());
44 return sInstance;
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationClientNameProvider.java 16 private static InvalidationClientNameProvider sInstance;
26 if (sInstance == null) {
27 sInstance = new InvalidationClientNameProvider();
29 return sInstance;
  /packages/apps/Camera2/src_pd/com/android/camera/util/
SessionStatsCollector.java 6 private static SessionStatsCollector sInstance;
9 if (sInstance == null) {
10 sInstance = new SessionStatsCollector();
12 return sInstance;
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
MultiUserAvatarCache.java 25 private static MultiUserAvatarCache sInstance;
34 if (sInstance == null) {
35 sInstance = new MultiUserAvatarCache();
37 return sInstance;
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyGlobals.java 34 private static TelephonyGlobals sInstance;
51 if (sInstance == null) {
52 sInstance = new TelephonyGlobals(context);
54 return sInstance;
  /external/chromium_org/base/android/java/src/org/chromium/base/
PowerMonitor.java 24 private static PowerMonitor sInstance;
44 sInstance = LazyHolder.INSTANCE;
54 if (sInstance == null) {
55 sInstance = LazyHolder.INSTANCE;
56 ApplicationStatus.registerApplicationStateListener(sInstance);
67 if (sInstance == null) {
74 sInstance.mIsBatteryPower = chargePlug != BatteryManager.BATTERY_PLUGGED_USB &&
92 return sInstance.mIsBatteryPower;
  /frameworks/base/core/java/android/text/
Spannable.java 53 private static Spannable.Factory sInstance = new Spannable.Factory();
59 return sInstance;
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
PackageInstallerCompat.java 32 private static PackageInstallerCompat sInstance;
36 if (sInstance == null) {
38 sInstance = new PackageInstallerCompatVL(context);
40 sInstance = new PackageInstallerCompatV16(context) { };
43 return sInstance;

Completed in 461 milliseconds

1 2 3 4 5 6 7 8 91011