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

1 2 3 4 5 6 7 8

  /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_weighting.cpp 24 const TypingWeighting TypingWeighting::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/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/java/com/android/server/
FgThread.java 31 private static FgThread sInstance;
39 if (sInstance == null) {
40 sInstance = new FgThread();
41 sInstance.start();
42 sHandler = new Handler(sInstance.getLooper());
55 return sInstance;
IoThread.java 28 private static IoThread sInstance;
36 if (sInstance == null) {
37 sInstance = new IoThread();
38 sInstance.start();
39 sHandler = new Handler(sInstance.getLooper());
52 return sInstance;
UiThread.java 30 private static UiThread sInstance;
38 if (sInstance == null) {
39 sInstance = new UiThread();
40 sInstance.start();
41 sHandler = new Handler(sInstance.getLooper());
61 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;
Editable.java 124 private static Editable.Factory sInstance = new Editable.Factory();
130 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 51 if (sInstance != null)
52 return sInstance;
54 sInstance = new HideReturnsTransformationMethod();
55 return sInstance;
58 private static HideReturnsTransformationMethod sInstance;
SingleLineTransformationMethod.java 54 if (sInstance != null)
55 return sInstance;
57 sInstance = new SingleLineTransformationMethod();
58 return sInstance;
61 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;
DialerKeyListener.java 40 if (sInstance != null)
41 return sInstance;
43 sInstance = new DialerKeyListener();
44 return sInstance;
116 private static DialerKeyListener 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;
  /hardware/qcom/display/msm8x26/libqdutils/
idle_invalidator.h 43 static android::sp<IdleInvalidator> 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;
  /packages/apps/Gallery2/src_pd/com/android/gallery3d/filtershow/filters/
FiltersManager.java 30 private static FiltersManager sInstance = null;
46 if (sInstance == null) {
47 sInstance = new FiltersManager();
49 return sInstance;
60 sInstance = null;
  /packages/apps/Mms/src/com/android/mms/data/
RecipientIdCache.java 35 private static RecipientIdCache sInstance;
36 static RecipientIdCache getInstance() { return sInstance; }
54 sInstance = new RecipientIdCache(context);
72 Context context = sInstance.mContext;
81 synchronized (sInstance) {
84 sInstance.mCache.clear();
89 sInstance.mCache.put(id, number);
103 synchronized (sInstance) {
116 String number = sInstance.mCache.get(longId);
125 number = sInstance.mCache.get(longId)
    [all...]

Completed in 1611 milliseconds

1 2 3 4 5 6 7 8