HomeSort by relevance Sort by last modified time
    Searched refs:sInstance (Results 1 - 25 of 182) 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_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;
TimeKeyListener.java 43 if (sInstance != null)
44 return sInstance;
46 sInstance = new TimeKeyListener();
47 return sInstance;
61 private static TimeKeyListener 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;
DialerKeyListener.java 40 if (sInstance != null)
41 return sInstance;
43 sInstance = new DialerKeyListener();
44 return sInstance;
116 private static DialerKeyListener 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;
  /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;
  /external/chromium_org/base/android/java/src/org/chromium/base/
PowerMonitor.java 24 private static PowerMonitor sInstance;
44 sInstance = LazyHolder.INSTANCE;
48 if (sInstance == null) {
49 sInstance = LazyHolder.INSTANCE;
50 ActivityStatus.registerStateListener(sInstance);
61 if (sInstance == null) {
68 sInstance.mIsBatteryPower = chargePlug != BatteryManager.BATTERY_PLUGGED_USB &&
86 return sInstance.mIsBatteryPower;
  /frameworks/base/core/java/android/text/
Spannable.java 53 private static Spannable.Factory sInstance = new Spannable.Factory();
59 return sInstance;
  /system/core/include/utils/
Singleton.h 34 TYPE* instance = sInstance;
37 sInstance = instance;
44 return sInstance != 0;
55 static TYPE* sInstance;
69 template<> TYPE* Singleton< TYPE >::sInstance(0); \
  /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;