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

1 2 34 5 6 7 8 91011

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
PrivateLog.java 49 private static PrivateLog sInstance = new PrivateLog();
56 if (!DEBUG) return sInstance;
61 return sInstance;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AudioAndHapticFeedbackManager.java 40 private static final AudioAndHapticFeedbackManager sInstance =
44 return sInstance;
52 sInstance.initInternal(context);
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwQuotaManagerBridge.java 26 private static AwQuotaManagerBridge sInstance;
29 if (sInstance == null) {
30 sInstance = new AwQuotaManagerBridge(nativeGetDefaultNativeAwQuotaManagerBridge());
32 return sInstance;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/invalidation/
InvalidationController.java 33 private static InvalidationController sInstance;
110 if (sInstance == null) {
111 sInstance = new InvalidationController(context);
113 return sInstance;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
DownloadController.java 20 private static DownloadController sInstance;
43 if (sInstance == null) {
44 sInstance = new DownloadController();
46 return sInstance;
ResourceExtractor.java 236 private static ResourceExtractor sInstance;
239 if (sInstance == null) {
240 sInstance = new ResourceExtractor(context);
242 return sInstance;
252 assert (sInstance == null || sInstance.mExtractTask == null)
267 assert (sInstance == null || sInstance.mExtractTask == null)
ScreenOrientationListener.java 159 private static ScreenOrientationListener sInstance;
168 if (sInstance == null) {
169 sInstance = new ScreenOrientationListener();
172 return sInstance;
  /frameworks/base/core/java/android/text/method/
ScrollingMovementMethod.java 113 if (sInstance == null)
114 sInstance = new ScrollingMovementMethod();
116 return sInstance;
119 private static ScrollingMovementMethod sInstance;
TextKeyListener.java 42 private static TextKeyListener[] sInstance =
86 if (sInstance[off] == null) {
87 sInstance[off] = new TextKeyListener(cap, autotext);
90 return sInstance[off];
235 if (sInstance != null)
236 return sInstance;
238 sInstance = new NullKeyListener();
239 return sInstance;
242 private static NullKeyListener sInstance;
  /frameworks/base/services/core/java/com/android/server/
AttributeCache.java 37 private static AttributeCache sInstance = null;
65 if (sInstance == null) {
66 sInstance = new AttributeCache(context);
71 return sInstance;
  /packages/apps/Browser/src/com/android/browser/
AutoFillProfileDatabase.java 34 private static AutoFillProfileDatabase sInstance;
87 if (sInstance == null) {
88 sInstance = new AutoFillProfileDatabase(context);
90 return sInstance;
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothAdapter.java 45 private static LocalBluetoothAdapter sInstance;
68 if (sInstance == null) {
71 sInstance = new LocalBluetoothAdapter(adapter);
75 return sInstance;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DefaultCallLogInsertionHelper.java 44 private static DefaultCallLogInsertionHelper sInstance;
54 if (sInstance == null) {
55 sInstance = new DefaultCallLogInsertionHelper(context);
57 return sInstance;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
AdtTestData.java 38 private static AdtTestData sInstance = null;
104 if (sInstance == null) {
105 sInstance = new AdtTestData();
107 return sInstance;
  /system/netd/server/
NetlinkManager.cpp 38 NetlinkManager *NetlinkManager::sInstance = NULL;
41 if (!sInstance)
42 sInstance = new NetlinkManager();
43 return sInstance;
NetlinkManager.h 28 static NetlinkManager *sInstance;
  /frameworks/base/tools/layoutlib/bridge/src/android/view/accessibility/
AccessibilityManager.java 44 private static AccessibilityManager sInstance = new AccessibilityManager(null, null, 0);
103 return sInstance;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
RoundedRectHelper.java 26 private final static RoundedRectHelper sInstance = new RoundedRectHelper();
33 return sInstance;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_scoring.h 33 static const TypingScoring *getInstance() { return &sInstance; }
84 static const TypingScoring sInstance;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GlobalCanvasDragInfo.java 45 private static final GlobalCanvasDragInfo sInstance = new GlobalCanvasDragInfo();
61 return sInstance;
  /frameworks/base/core/java/android/view/textservice/
TextServicesManager.java 68 private static TextServicesManager sInstance;
84 if (sInstance != null) {
85 return sInstance;
87 sInstance = new TextServicesManager();
89 return sInstance;
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodSettingValuesWrapper.java 46 private static volatile InputMethodSettingValuesWrapper sInstance;
54 if (sInstance == null) {
56 if (sInstance == null) {
57 sInstance = new InputMethodSettingValuesWrapper(context);
61 return sInstance;
  /packages/apps/Mms/src/com/android/mms/util/
DownloadManager.java 79 synchronized (sInstance) {
103 synchronized (sInstance) {
113 private static DownloadManager sInstance;
140 if (sInstance != null) {
143 sInstance = new DownloadManager(context);
147 if (sInstance == null) {
150 return sInstance;
  /external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/sync/
SyncController.java 35 private static SyncController sInstance;
62 if (sInstance == null) {
63 sInstance = new SyncController(context.getApplicationContext());
65 return sInstance;
  /frameworks/base/core/java/com/android/internal/util/
NotificationColorUtil.java 47 private static NotificationColorUtil sInstance;
57 if (sInstance == null) {
58 sInstance = new NotificationColorUtil(context);
60 return sInstance;

Completed in 653 milliseconds

1 2 34 5 6 7 8 91011