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

1 2 3 4 56 7 8 91011

  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtilsCache.java 36 private static LockPatternUtilsCache sInstance;
48 if (sInstance == null) {
49 sInstance = new LockPatternUtilsCache(service);
51 return sInstance;
  /frameworks/opt/telephony/src/java/com/google/android/mms/util/
PduCache.java 50 private static PduCache sInstance;
85 if (sInstance == null) {
89 sInstance = new PduCache();
91 return sInstance;
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorUtils.java 54 private static ContactEditorUtils sInstance;
72 if (sInstance == null) {
73 sInstance = new ContactEditorUtils(context.getApplicationContext());
75 return sInstance;
  /packages/apps/InCallUI/src/com/android/incallui/
TelecomAdapter.java 37 private static TelecomAdapter sInstance;
43 if (sInstance == null) {
44 sInstance = new TelecomAdapter();
46 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;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_weighting.cpp 24 const TypingWeighting TypingWeighting::sInstance;
  /frameworks/base/core/java/android/ddm/
DdmHandleViewDebug.java 94 private static final DdmHandleViewDebug sInstance = new DdmHandleViewDebug();
100 DdmServer.registerHandler(CHUNK_VUGL, sInstance);
101 DdmServer.registerHandler(CHUNK_VULW, sInstance);
102 DdmServer.registerHandler(CHUNK_VURT, sInstance);
103 DdmServer.registerHandler(CHUNK_VUOP, sInstance);
  /packages/services/Telephony/src/com/android/phone/
CallController.java 69 private static CallController sInstance;
108 if (sInstance == null) {
109 sInstance = new CallController(app, callLogger, callGatewayManager);
111 Log.wtf(TAG, "init() called multiple times! sInstance = " + sInstance);
113 return sInstance;
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/crypto/
CipherFactory.java 66 private static CipherFactory sInstance = new CipherFactory();
86 return LazyHolder.sInstance;
  /packages/services/Mms/src/com/android/mms/service/
MmsConfigManager.java 45 private static volatile MmsConfigManager sInstance = new MmsConfigManager();
48 return sInstance;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
FlagManager.java 48 private static final FlagManager sInstance = new FlagManager();
57 return sInstance;
  /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/text/method/
ArrowKeyMovementMethod.java 334 if (sInstance == null) {
335 sInstance = new ArrowKeyMovementMethod();
338 return sInstance;
342 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];
  /frameworks/base/services/core/java/com/android/server/
SystemConfig.java 46 static SystemConfig sInstance;
86 if (sInstance == null) {
87 sInstance = new SystemConfig();
89 return sInstance;
  /hardware/qcom/display/msm8960/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/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/services/Telephony/src/com/android/services/telephony/
TelecomAccountRegistry.java 213 private static TelecomAccountRegistry sInstance;
227 if (sInstance == null) {
228 sInstance = new TelecomAccountRegistry(context);
230 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/
AutoText.java 58 private static AutoText sInstance = new AutoText(Resources.getSystem());
93 instance = sInstance;
97 sInstance = instance;
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
ResourceModifiers.java 58 private static ResourceModifiers sInstance = null;
59 public static ResourceModifiers instance() { return sInstance; }
61 sInstance = new ResourceModifiers(resources);
  /packages/apps/Mms/src/com/android/mms/util/
DraftCache.java 37 private static DraftCache sInstance;
236 sInstance = new DraftCache(context);
243 return sInstance;

Completed in 1934 milliseconds

1 2 3 4 56 7 8 91011