Searched refs:sInstance (Results 26 - 45 of 45) sorted by relevance

12

/frameworks/base/core/java/android/text/method/
H A DMultiTapKeyListener.java34 private static MultiTapKeyListener[] sInstance = field in class:MultiTapKeyListener
70 if (sInstance[off] == null) {
71 sInstance[off] = new MultiTapKeyListener(cap, autotext);
74 return sInstance[off];
H A DArrowKeyMovementMethod.java320 if (sInstance == null) {
321 sInstance = new ArrowKeyMovementMethod();
324 return sInstance;
328 private static ArrowKeyMovementMethod sInstance; field in class:ArrowKeyMovementMethod
H A DQwertyKeyListener.java32 private static QwertyKeyListener[] sInstance = field in class:QwertyKeyListener
57 if (sInstance[off] == null) {
58 sInstance[off] = new QwertyKeyListener(cap, autoText);
61 return sInstance[off];
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityManager.java76 private static AccessibilityManager sInstance; field in class:AccessibilityManager
138 if (sInstance == null) {
141 sInstance = new AccessibilityManager(context, service);
144 return sInstance;
H A DAccessibilityInteractionClient.java76 private static AccessibilityInteractionClient sInstance; field in class:AccessibilityInteractionClient
103 if (sInstance == null) {
104 sInstance = new AccessibilityInteractionClient();
106 return sInstance;
/frameworks/base/core/java/android/webkit/
H A DGeolocationPermissions.java60 private static GeolocationPermissions sInstance; field in class:GeolocationPermissions
88 if (sInstance == null) {
89 sInstance = new GeolocationPermissions();
91 return sInstance;
H A DWebView.java399 private static OnTrimMemoryListener sInstance = null; field in class:WebView.OnTrimMemoryListener
402 if (sInstance == null) {
403 sInstance = new OnTrimMemoryListener(c.getApplicationContext());
/frameworks/base/core/java/com/google/android/mms/util/
H A DPduCache.java50 private static PduCache sInstance; field in class:PduCache
83 if (sInstance == null) {
87 sInstance = new PduCache();
89 return sInstance;
/frameworks/base/telephony/java/com/android/internal/telephony/cat/
H A DCatService.java71 private static CatService sInstance; field in class:CatService
561 if (sInstance == null) {
568 sInstance = new CatService(ci, ir, context, fh, ic);
569 CatLog.d(sInstance, "NEW sInstance");
571 CatLog.d(sInstance, "Reinitialize the Service with SIMRecords");
575 mIccRecords.registerForRecordsLoaded(sInstance, MSG_ID_ICC_RECORDS_LOADED, null);
576 CatLog.d(sInstance, "sr changed reinitialize and return current sInstance");
578 CatLog.d(sInstance, "Retur
[all...]
H A DCommandParamsFactory.java35 private static CommandParamsFactory sInstance = null; field in class:CommandParamsFactory
61 if (sInstance != null) {
62 return sInstance;
/frameworks/base/core/java/android/net/http/
H A DCertificateChainValidator.java53 private static final CertificateChainValidator sInstance field in class:CertificateChainValidator
60 return sInstance;
/frameworks/base/core/java/android/text/
H A DAutoText.java58 private static AutoText sInstance = new AutoText(Resources.getSystem()); field in class:AutoText
93 instance = sInstance;
97 sInstance = instance;
/frameworks/base/core/java/android/server/
H A DBluetoothPanProfileHandler.java57 public static BluetoothPanProfileHandler sInstance; field in class:BluetoothPanProfileHandler
82 if (sInstance == null) sInstance = new BluetoothPanProfileHandler(context, service);
83 return sInstance;
H A DBluetoothHealthProfileHandler.java50 private static BluetoothHealthProfileHandler sInstance; field in class:BluetoothHealthProfileHandler
167 if (sInstance == null) sInstance = new BluetoothHealthProfileHandler(context, service);
168 return sInstance;
/frameworks/base/core/java/android/pim/
H A DContactsAsyncHelper.java64 private static ContactsAsyncHelper sInstance; field in class:ContactsAsyncHelper
67 sInstance = new ContactsAsyncHelper();
/frameworks/base/telephony/java/android/telephony/
H A DSmsManager.java45 private static final SmsManager sInstance = new SmsManager(); field in class:SmsManager
227 return sInstance;
H A DTelephonyManager.java80 private static TelephonyManager sInstance = new TelephonyManager(); field in class:TelephonyManager
85 return sInstance;
/frameworks/base/media/libmedia/
H A DMediaProfiles.cpp35 MediaProfiles *MediaProfiles::sInstance = NULL; member in class:android::MediaProfiles
624 sInstance = createDefaultInstance();
627 sInstance = createInstanceFromXmlFile(defaultXmlFile);
630 sInstance = createInstanceFromXmlFile(value);
632 CHECK(sInstance != NULL);
633 sInstance->checkAndAddRequiredProfilesIfNecessary();
637 return sInstance;
1013 createDefaultVideoEditorCap(sInstance);
/frameworks/base/core/tests/coretests/src/android/webkit/
H A DAccessibilityInjectorTest.java83 private static AccessibilityInjectorTest sInstance; field in class:AccessibilityInjectorTest
111 sInstance = this;
1772 if (sInstance == null) {
1782 if (sInstance == null) {
/frameworks/base/include/media/
H A DMediaProfiles.h486 static MediaProfiles *sInstance; member in class:android::MediaProfiles

Completed in 469 milliseconds

12