HomeSort by relevance Sort by last modified time
    Searched defs:sInstance (Results 26 - 50 of 82) sorted by null

12 3 4

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleXmlTransfer.java 68 private static final SimpleXmlTransfer sInstance = new SimpleXmlTransfer();
77 return sInstance;
  /system/core/nexus/
NetworkManager.h 32 static NetworkManager *sInstance;
NetworkManager.cpp 31 NetworkManager *NetworkManager::sInstance = NULL;
34 if (!sInstance)
35 sInstance = new NetworkManager(new PropertyManager());
36 return sInstance;
  /system/vold/
VolumeManager.h 54 static VolumeManager *sInstance;
  /cts/tests/src/android/provider/cts/
MediaStoreAudioTestHelper.java 73 private static Audio1 sInstance = new Audio1();
76 return sInstance;
146 private static Audio2 sInstance = new Audio2();
149 return sInstance;
  /cts/tools/host/src/com/android/cts/
TestSessionLogBuilder.java 38 private static TestSessionLogBuilder sInstance;
44 if (sInstance == null) {
45 sInstance = new TestSessionLogBuilder();
48 return sInstance;
  /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/method/
ArrowKeyMovementMethod.java 283 if (sInstance == null) {
284 sInstance = new ArrowKeyMovementMethod();
287 return sInstance;
292 private static ArrowKeyMovementMethod sInstance;
ScrollingMovementMethod.java 233 if (sInstance == null)
234 sInstance = new ScrollingMovementMethod();
236 return sInstance;
239 private static ScrollingMovementMethod sInstance;
LinkMovementMethod.java 248 if (sInstance == null)
249 sInstance = new LinkMovementMethod();
251 return sInstance;
254 private static LinkMovementMethod sInstance;
MultiTapKeyListener.java 34 private static MultiTapKeyListener[] sInstance =
70 if (sInstance[off] == null) {
71 sInstance[off] = new MultiTapKeyListener(cap, autotext);
74 return sInstance[off];
PasswordTransformationMethod.java 64 if (sInstance != null)
65 return sInstance;
67 sInstance = new PasswordTransformationMethod();
68 return sInstance;
265 private static PasswordTransformationMethod sInstance;
TextKeyListener.java 38 private static TextKeyListener[] sInstance =
82 if (sInstance[off] == null) {
83 sInstance[off] = new TextKeyListener(cap, autotext);
86 return sInstance[off];
223 if (sInstance != null)
224 return sInstance;
226 sInstance = new NullKeyListener();
227 return sInstance;
230 private static NullKeyListener sInstance;
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityManager.java 53 private static AccessibilityManager sInstance;
96 if (sInstance == null) {
97 sInstance = new AccessibilityManager(context);
100 return sInstance;
  /frameworks/base/services/java/com/android/server/
AttributeCache.java 36 private static AttributeCache sInstance = null;
64 if (sInstance == null) {
65 sInstance = new AttributeCache(context);
70 return sInstance;
  /frameworks/base/telephony/java/android/telephony/gsm/
SmsManager.java 30 private static SmsManager sInstance;
40 if (sInstance == null) {
41 sInstance = new SmsManager();
43 return sInstance;
  /packages/apps/Calendar/src/com/android/calendar/
ContactsAsyncHelper.java 60 private static ContactsAsyncHelper sInstance;
63 sInstance = new ContactsAsyncHelper();
  /packages/apps/Mms/src/com/android/mms/util/
DraftCache.java 37 private static DraftCache sInstance;
195 sInstance = new DraftCache(context);
202 return sInstance;
  /packages/apps/Music/src/com/android/music/
MediaAppWidgetProvider.java 39 private static MediaAppWidgetProvider sInstance;
42 if (sInstance == null) {
43 sInstance = new MediaAppWidgetProvider();
45 return sInstance;
  /frameworks/base/core/java/android/pim/
ContactsAsyncHelper.java 64 private static ContactsAsyncHelper sInstance;
67 sInstance = new ContactsAsyncHelper();
  /frameworks/base/core/java/android/text/
AutoText.java 58 private static AutoText sInstance = new AutoText(Resources.getSystem());
93 instance = sInstance;
97 sInstance = instance;
  /frameworks/base/core/java/android/webkit/
GeolocationPermissions.java 60 private static GeolocationPermissions sInstance;
88 if (sInstance == null) {
89 sInstance = new GeolocationPermissions();
91 return sInstance;
  /frameworks/base/core/java/com/android/internal/util/
HanziToPinyin.java 305 private static HanziToPinyin sInstance;
347 if (sInstance != null) {
348 return sInstance;
354 sInstance = new HanziToPinyin(true);
355 return sInstance;
359 sInstance = new HanziToPinyin(false);
360 return sInstance;
  /frameworks/base/core/java/com/google/android/mms/util/
PduCache.java 51 private static PduCache sInstance;
84 if (sInstance == null) {
88 sInstance = new PduCache();
90 return sInstance;
  /frameworks/base/telephony/java/android/telephony/
SmsManager.java 45 private static SmsManager sInstance;
227 if (sInstance == null) {
228 sInstance = new SmsManager();
230 return sInstance;

Completed in 842 milliseconds

12 3 4