HomeSort by relevance Sort by last modified time
    Searched refs:sInstance (Results 101 - 125 of 166) sorted by null

1 2 3 45 6 7

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
GlobalLintConfiguration.java 39 private static final GlobalLintConfiguration sInstance = new GlobalLintConfiguration();
54 return sInstance;
  /frameworks/base/core/java/android/bluetooth/
BluetoothTetheringDataTracker.java 81 private static BluetoothTetheringDataTracker sInstance;
95 if (sInstance == null) sInstance = new BluetoothTetheringDataTracker();
96 return sInstance;
  /frameworks/base/core/java/android/text/method/
ArrowKeyMovementMethod.java 318 if (sInstance == null) {
319 sInstance = new ArrowKeyMovementMethod();
322 return sInstance;
326 private static ArrowKeyMovementMethod sInstance;
QwertyKeyListener.java 36 private static QwertyKeyListener[] sInstance =
61 if (sInstance[off] == null) {
62 sInstance[off] = new QwertyKeyListener(cap, autoText);
65 return sInstance[off];
  /hardware/qcom/display/liboverlay/
overlay.cpp 205 if(sInstance == NULL) {
206 sInstance = new Overlay();
208 return sInstance;
309 Overlay* Overlay::sInstance = 0;
  /packages/apps/Browser/src/com/android/browser/
DataController.java 49 private static DataController sInstance;
75 if (sInstance == null) {
76 sInstance = new DataController(c);
78 return sInstance;
  /packages/apps/Dialer/src/com/android/dialer/calllog/
DefaultVoicemailNotifier.java 54 private static DefaultVoicemailNotifier sInstance;
64 if (sInstance == null) {
68 sInstance = new DefaultVoicemailNotifier(context, notificationManager,
73 return sInstance;
  /packages/apps/Email/src/com/android/email/
RefreshManager.java 56 private static RefreshManager sInstance;
170 if (sInstance == null) {
171 sInstance = new RefreshManager(context, Controller.getInstance(context),
174 return sInstance;
  /packages/apps/Mms/src/com/android/mms/transaction/
RetryScheduler.java 56 private static RetryScheduler sInstance;
58 if (sInstance == null) {
59 sInstance = new RetryScheduler(context);
61 return sInstance;
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
Sources.java 63 private static SoftReference<Sources> sInstance = null;
71 Sources sources = sInstance == null ? null : sInstance.get();
74 sInstance = new SoftReference<Sources>(sources);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputMethodManager.java 45 private static final RichInputMethodManager sInstance = new RichInputMethodManager();
53 sInstance.checkInitialized();
54 return sInstance;
66 sInstance.initInternal(context, prefs);
SubtypeSwitcher.java 45 private static final SubtypeSwitcher sInstance = new SubtypeSwitcher();
78 return sInstance;
84 sInstance.initialize(context);
Settings.java 91 private static final Settings sInstance = new Settings();
94 return sInstance;
98 sInstance.onCreate(context);
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-win32.c 41 static HINSTANCE sInstance;
219 sInstance = instance;
226 wc.hInstance = sInstance;
  /frameworks/base/core/java/android/text/
AutoText.java 58 private static AutoText sInstance = new AutoText(Resources.getSystem());
93 instance = sInstance;
97 sInstance = instance;
  /packages/apps/Mms/src/com/android/mms/util/
DraftCache.java 37 private static DraftCache sInstance;
236 sInstance = new DraftCache(context);
243 return sInstance;
SmileyParser.java 36 private static SmileyParser sInstance;
37 public static SmileyParser getInstance() { return sInstance; }
39 sInstance = new SmileyParser(context);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
KeyCodeDescriptionMapper.java 40 private static KeyCodeDescriptionMapper sInstance = new KeyCodeDescriptionMapper();
49 sInstance.initInternal();
53 return sInstance;
AccessibleKeyboardViewProxy.java 39 private static final AccessibleKeyboardViewProxy sInstance = new AccessibleKeyboardViewProxy();
71 sInstance.initInternal(inputMethod);
75 return sInstance;
  /packages/apps/Phone/src/com/android/phone/
CallController.java 70 private static CallController sInstance;
107 if (sInstance == null) {
108 sInstance = new CallController(app, callLogger);
110 Log.wtf(TAG, "init() called multiple times! sInstance = " + sInstance);
112 return sInstance;
    [all...]
  /frameworks/base/core/java/android/hardware/input/
InputManager.java 58 private static InputManager sInstance;
186 if (sInstance == null) {
188 sInstance = new InputManager(IInputManager.Stub.asInterface(b));
190 return sInstance;
  /frameworks/base/core/java/android/webkit/
WebViewDatabaseClassic.java 54 private static WebViewDatabaseClassic sInstance = null;
117 if (sInstance == null) {
118 sInstance = new WebViewDatabaseClassic(context);
120 return sInstance;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 58 private static IconFactory sInstance;
70 if (sInstance == null) {
71 sInstance = new IconFactory();
73 return sInstance;
  /system/vold/
VolumeManager.h 55 static VolumeManager *sInstance;
  /frameworks/opt/telephony/src/java/android/telephony/
SmsManager.java 46 private static final SmsManager sInstance = new SmsManager();
236 return sInstance;

Completed in 1235 milliseconds

1 2 3 45 6 7