HomeSort by relevance Sort by last modified time
    Searched defs:sInstance (Results 1 - 25 of 683) 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 25 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;
  /hardware/qcom/display/msm8909/libqdutils/
idle_invalidator.h 44 static android::sp<IdleInvalidator> sInstance;
  /hardware/qcom/display/msm8994/libqdutils/
idle_invalidator.h 44 static android::sp<IdleInvalidator> sInstance;
  /cts/tests/autofillservice/src/android/autofillservice/cts/
WelcomeActivity.java 29 private static WelcomeActivity sInstance;
38 sInstance = this;
60 if (sInstance != null) {
62 sInstance.finish();
  /frameworks/base/core/java/com/android/internal/os/
BackgroundThread.java 27 private static BackgroundThread sInstance;
35 if (sInstance == null) {
36 sInstance = new BackgroundThread();
37 sInstance.start();
38 sInstance.getLooper().setTraceTag(Trace.TRACE_TAG_ACTIVITY_MANAGER);
39 sHandler = new Handler(sInstance.getLooper());
46 return sInstance;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
ForegroundThread.java 27 private static ForegroundThread sInstance;
35 if (sInstance == null) {
36 sInstance = new ForegroundThread();
37 sInstance.start();
38 sHandler = new Handler(sInstance.getLooper());
45 return sInstance;
  /frameworks/base/services/core/java/com/android/server/
AnimationThread.java 29 private static AnimationThread sInstance;
37 if (sInstance == null) {
38 sInstance = new AnimationThread();
39 sInstance.start();
40 sInstance.getLooper().setTraceTag(Trace.TRACE_TAG_WINDOW_MANAGER);
41 sHandler = new Handler(sInstance.getLooper());
48 return sInstance;
DisplayThread.java 30 private static DisplayThread sInstance;
40 if (sInstance == null) {
41 sInstance = new DisplayThread();
42 sInstance.start();
43 sInstance.getLooper().setTraceTag(Trace.TRACE_TAG_ACTIVITY_MANAGER);
44 sHandler = new Handler(sInstance.getLooper());
51 return sInstance;
FgThread.java 31 private static FgThread sInstance;
39 if (sInstance == null) {
40 sInstance = new FgThread();
41 sInstance.start();
42 sInstance.getLooper().setTraceTag(Trace.TRACE_TAG_ACTIVITY_MANAGER);
43 sHandler = new Handler(sInstance.getLooper());
50 return sInstance;
IoThread.java 28 private static IoThread sInstance;
36 if (sInstance == null) {
37 sInstance = new IoThread();
38 sInstance.start();
39 sInstance.getLooper().setTraceTag(Trace.TRACE_TAG_ACTIVITY_MANAGER);
40 sHandler = new Handler(sInstance.getLooper());
47 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 55 private static Spannable.Factory sInstance = new Spannable.Factory();
61 return sInstance;
  /frameworks/base/core/java/android/text/method/
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;
  /hardware/qcom/display/msm8960/libqdutils/
idle_invalidator.h 43 static android::sp<IdleInvalidator> sInstance;
  /packages/apps/Camera2/src/com/android/camera/util/
AndroidContext.java 27 private static AndroidContext sInstance;
35 if (sInstance == null) {
36 sInstance = new AndroidContext(context);
45 if (sInstance == null) {
48 return sInstance;
  /packages/apps/Contacts/src-bind/com/android/contactsbind/experiments/
Flags.java 27 private static Flags sInstance;
32 if (sInstance == null) {
33 sInstance = new Flags();
35 return 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;

Completed in 2626 milliseconds

1 2 3 4 5 6 7 8 91011>>