HomeSort by relevance Sort by last modified time
    Searched defs:sInstance (Results 126 - 134 of 134) sorted by null

1 2 3 4 56

  /packages/apps/Browser/src/com/android/browser/
BrowserSettings.java 107 private static BrowserSettings sInstance;
133 sInstance = new BrowserSettings(context);
137 return sInstance;
    [all...]
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java     [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java 382 static ApplicationsState sInstance;
386 if (sInstance == null) {
387 sInstance = new ApplicationsState(app);
389 return sInstance;
    [all...]
RunningState.java 53 static RunningState sInstance;
562 if (sInstance == null) {
563 sInstance = new RunningState(context);
565 return sInstance;
    [all...]
  /packages/apps/Email/src/com/android/email/
MessagingController.java 128 private static MessagingController sInstance = null;
161 if (sInstance == null) {
162 sInstance = new MessagingController(_context, _controller);
164 return sInstance;
171 sInstance = mockController;
    [all...]
  /packages/apps/Phone/src/com/android/phone/
CallNotifier.java 79 private static CallNotifier sInstance;
187 if (sInstance == null) {
188 sInstance = new CallNotifier(app, phone, ringer, btMgr, callLog);
190 Log.wtf(LOG_TAG, "init() called multiple times! sInstance = " + sInstance);
192 return sInstance;
    [all...]
BluetoothHandsfree.java 78 private static BluetoothHandsfree sInstance;
198 if (sInstance == null) {
199 sInstance = new BluetoothHandsfree(context, cm);
201 Log.wtf(TAG, "init() called multiple times! sInstance = " + sInstance);
203 return sInstance;
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewClassic.java 710 private static OnTrimMemoryListener sInstance = null;
713 if (sInstance == null) {
714 sInstance = new OnTrimMemoryListener(c.getApplicationContext());
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 484 milliseconds

1 2 3 4 56