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

1 2 3 45 6 7 8 91011

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardTouchDelegate.java 45 private static KeyguardTouchDelegate sInstance;
70 sInstance = null; // force reconnection if this goes away
92 KeyguardTouchDelegate instance = sInstance;
94 instance = sInstance = new KeyguardTouchDelegate(context);
  /hardware/ti/omap4-aah/libtiutils/
DebugUtils.cpp 43 Debug Debug::sInstance;
  /packages/apps/Contacts/src/com/android/contacts/list/
ProviderStatusWatcher.java 73 private static ProviderStatusWatcher sInstance;
100 if (sInstance == null) {
101 sInstance = new ProviderStatusWatcher(context);
103 return sInstance;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/location/
CountryDetector.java 47 private static CountryDetector sInstance;
124 if (sInstance == null) {
125 sInstance = new CountryDetector(context.getApplicationContext());
127 return sInstance;
  /packages/apps/Email/src/com/android/email/provider/
RefreshStatusMonitor.java 32 private static RefreshStatusMonitor sInstance = null;
41 if (sInstance == null) {
42 sInstance = new RefreshStatusMonitor(context.getApplicationContext());
45 return sInstance;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
HanziToPinyin.java 36 private static HanziToPinyin sInstance;
90 if (sInstance == null) {
91 sInstance = new HanziToPinyin();
93 return sInstance;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleXmlTransfer.java 67 private static final SimpleXmlTransfer sInstance = new SimpleXmlTransfer();
76 return sInstance;
  /frameworks/base/core/java/com/android/internal/view/
InputConnectionWrapper.java 47 private static InputContextCallback sInstance = new InputContextCallback();
58 // Return sInstance if it's non-null, otherwise construct a new callback
60 if (sInstance != null) {
61 callback = sInstance;
62 sInstance = null;
81 // If sInstance is non-null, just let this object be garbage-collected
82 if (sInstance == null) {
87 sInstance = this;
  /packages/apps/Browser/src/com/android/browser/
CrashRecoveryHandler.java 53 private static CrashRecoveryHandler sInstance;
64 if (sInstance == null) {
65 sInstance = new CrashRecoveryHandler(controller);
67 sInstance.mController = controller;
69 return sInstance;
73 return sInstance;
Preloader.java 36 private static Preloader sInstance;
44 sInstance = new Preloader(context);
48 return sInstance;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/
VendorPolicyLoader.java 60 private static VendorPolicyLoader sInstance;
65 if (sInstance == null) {
67 sInstance = new VendorPolicyLoader(context);
69 return sInstance;
81 sInstance = new VendorPolicyLoader(context, apkPackageName, name, true);
91 sInstance = null;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
RecentsConfiguration.java 38 static RecentsConfiguration sInstance;
150 if (sInstance == null) {
151 sInstance = new RecentsConfiguration(context);
155 sInstance.update(context);
158 sInstance.updateOnReinitialize(context, ssp);
159 return sInstance;
164 return sInstance;
  /external/chromium_org/printing/android/java/src/org/chromium/printing/
PrintingControllerImpl.java 44 private static PrintingController sInstance;
112 if (sInstance == null) {
113 sInstance = new PrintingControllerImpl(printDocumentAdapterWrapper, errorText);
115 return sInstance;
127 return sInstance;
  /frameworks/base/core/java/android/text/method/
PasswordTransformationMethod.java 63 if (sInstance != null)
64 return sInstance;
66 sInstance = new PasswordTransformationMethod();
67 return sInstance;
264 private static PasswordTransformationMethod sInstance;
LinkMovementMethod.java 251 if (sInstance == null)
252 sInstance = new LinkMovementMethod();
254 return sInstance;
257 private static LinkMovementMethod sInstance;
MultiTapKeyListener.java 38 private static MultiTapKeyListener[] sInstance =
74 if (sInstance[off] == null) {
75 sInstance[off] = new MultiTapKeyListener(cap, autotext);
78 return sInstance[off];
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java     [all...]
  /packages/services/Telephony/src/com/android/phone/
Ringer.java 61 private static Ringer sInstance;
84 if (sInstance == null) {
85 sInstance = new Ringer(context, bluetoothManager);
87 Log.wtf(LOG_TAG, "init() called multiple times! sInstance = " + sInstance);
89 return sInstance;
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
ResourceModifier.java 37 private static ResourceModifier sInstance = null;
127 return sInstance;
131 sInstance = new ResourceModifier(resources);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
AccessibilityUtils.java 46 private static final AccessibilityUtils sInstance = new AccessibilityUtils();
69 sInstance.initInternal(context);
73 return sInstance;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ShadowHelper.java 26 final static ShadowHelper sInstance = new ShadowHelper();
147 return sInstance;
  /packages/apps/Gallery2/src/com/android/photos/data/
GalleryBitmapPool.java 65 private static GalleryBitmapPool sInstance = new GalleryBitmapPool(CAPACITY_BYTES);
68 return sInstance;
  /packages/apps/InCallUI/src/com/android/incallui/
InCallVideoCallListenerNotifier.java 33 private static InCallVideoCallListenerNotifier sInstance = new InCallVideoCallListenerNotifier();
52 return sInstance;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
CursorAnchorInfoCompatWrapper.java 106 static CursorAnchorInfoCompatWrapper sInstance = new CursorAnchorInfoCompatWrapper(null);
111 return FakeHolder.sInstance;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_traversal.h 35 static const TypingTraversal *getInstance() { return &sInstance; }
180 static const TypingTraversal sInstance;

Completed in 2224 milliseconds

1 2 3 45 6 7 8 91011