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

1 2 3 4 5 6 7 8 91011

  /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_weighting.cpp 24 const TypingWeighting TypingWeighting::sInstance;
typing_suggest_policy.h 34 static const TypingSuggestPolicy *getInstance() { return &sInstance; }
52 static const TypingSuggestPolicy sInstance;
  /hardware/qcom/display/msm8084/libqdutils/
idle_invalidator.h 43 static android::sp<IdleInvalidator> sInstance;
  /hardware/qcom/display/msm8226/libqdutils/
idle_invalidator.h 43 static android::sp<IdleInvalidator> 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;
  /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/core/java/android/os/
NullVibrator.java 27 private static final NullVibrator sInstance = new NullVibrator();
33 return sInstance;
  /frameworks/base/core/java/android/text/
Spannable.java 53 private static Spannable.Factory sInstance = new Spannable.Factory();
59 return 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;
  /hardware/qcom/display/msm8960/libqdutils/
idle_invalidator.h 43 static android::sp<IdleInvalidator> sInstance;
  /hardware/qcom/display/msm8974/libqdutils/
idle_invalidator.h 44 static android::sp<IdleInvalidator> sInstance;
  /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;
  /system/vold/
NetlinkManager.h 27 static NetlinkManager *sInstance;
  /development/samples/BusinessCard/src/com/example/android/businesscard/
ContactAccessor.java 37 private static ContactAccessor sInstance;
40 if (sInstance == null) {
68 sInstance = clazz.newInstance();
74 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;

Completed in 901 milliseconds

1 2 3 4 5 6 7 8 91011