OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sInstance
(Results
1 - 25
of
82
) sorted by null
1
2
3
4
/frameworks/base/core/java/android/text/
Spannable.java
53
private static Spannable.Factory
sInstance
= new Spannable.Factory();
59
return
sInstance
;
Editable.java
124
private static Editable.Factory
sInstance
= new Editable.Factory();
130
return
sInstance
;
/frameworks/base/core/java/android/text/method/
DateKeyListener.java
39
if (
sInstance
!= null)
40
return
sInstance
;
42
sInstance
= new DateKeyListener();
43
return
sInstance
;
57
private static DateKeyListener
sInstance
;
DateTimeKeyListener.java
39
if (
sInstance
!= null)
40
return
sInstance
;
42
sInstance
= new DateTimeKeyListener();
43
return
sInstance
;
57
private static DateTimeKeyListener
sInstance
;
HideReturnsTransformationMethod.java
51
if (
sInstance
!= null)
52
return
sInstance
;
54
sInstance
= new HideReturnsTransformationMethod();
55
return
sInstance
;
58
private static HideReturnsTransformationMethod
sInstance
;
SingleLineTransformationMethod.java
54
if (
sInstance
!= null)
55
return
sInstance
;
57
sInstance
= new SingleLineTransformationMethod();
58
return
sInstance
;
61
private static SingleLineTransformationMethod
sInstance
;
TimeKeyListener.java
39
if (
sInstance
!= null)
40
return
sInstance
;
42
sInstance
= new TimeKeyListener();
43
return
sInstance
;
57
private static TimeKeyListener
sInstance
;
DialerKeyListener.java
36
if (
sInstance
!= null)
37
return
sInstance
;
39
sInstance
= new DialerKeyListener();
40
return
sInstance
;
112
private static DialerKeyListener
sInstance
;
DigitsKeyListener.java
90
if (
sInstance
[kind] != null)
91
return
sInstance
[kind];
93
sInstance
[kind] = new DigitsKeyListener(sign, decimal);
94
return
sInstance
[kind];
217
private static DigitsKeyListener[]
sInstance
= new DigitsKeyListener[4];
/frameworks/base/include/utils/
Singleton.h
33
TYPE* instance =
sInstance
;
36
sInstance
= instance;
49
static TYPE*
sInstance
;
64
template<> TYPE* Singleton< TYPE >::
sInstance
(0);
/packages/apps/Stk/src/com/android/stk/
StkDigitsKeyListener.java
37
if (
sInstance
!= null) {
38
return
sInstance
;
40
sInstance
= new StkDigitsKeyListener();
41
return
sInstance
;
53
private static StkDigitsKeyListener
sInstance
;
/system/netd/
NetlinkManager.cpp
35
NetlinkManager *NetlinkManager::
sInstance
= NULL;
38
if (!
sInstance
)
39
sInstance
= new NetlinkManager();
40
return
sInstance
;
NetlinkManager.h
27
static NetlinkManager *
sInstance
;
/system/vold/
NetlinkManager.cpp
35
NetlinkManager *NetlinkManager::
sInstance
= NULL;
38
if (!
sInstance
)
39
sInstance
= new NetlinkManager();
40
return
sInstance
;
NetlinkManager.h
27
static NetlinkManager *
sInstance
;
/development/samples/BusinessCard/src/com/example/android/businesscard/
ContactAccessor.java
37
private static ContactAccessor
sInstance
;
40
if (
sInstance
== null) {
68
sInstance
= clazz.newInstance();
74
return
sInstance
;
/frameworks/base/tools/layoutlib/bridge/src/android/view/accessibility/
AccessibilityManager.java
38
private static AccessibilityManager
sInstance
= new AccessibilityManager();
46
return
sInstance
;
/packages/apps/Mms/src/com/android/mms/data/
RecipientIdCache.java
31
private static RecipientIdCache
sInstance
;
32
static RecipientIdCache getInstance() { return
sInstance
; }
47
sInstance
= new RecipientIdCache(context);
65
Context context =
sInstance
.mContext;
74
synchronized (
sInstance
) {
77
sInstance
.mCache.clear();
82
sInstance
.mCache.put(id, number);
96
synchronized (
sInstance
) {
109
String number =
sInstance
.mCache.get(longId);
118
number =
sInstance
.mCache.get(longId)
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
AdtTestData.java
36
private static AdtTestData
sInstance
= null;
79
if (
sInstance
== null) {
80
sInstance
= new AdtTestData();
82
return
sInstance
;
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
RilMessageDecoder.java
38
private static RilMessageDecoder
sInstance
= null;
55
if (
sInstance
== null) {
56
sInstance
= new RilMessageDecoder(caller, fh);
57
sInstance
.start();
59
return
sInstance
;
/packages/apps/Mms/src/com/android/mms/transaction/
SmsReceiver.java
34
private static SmsReceiver
sInstance
;
37
if (
sInstance
== null) {
38
sInstance
= new SmsReceiver();
40
return
sInstance
;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GlobalCanvasDragInfo.java
39
private static final GlobalCanvasDragInfo
sInstance
= new GlobalCanvasDragInfo();
52
return
sInstance
;
/frameworks/base/core/java/com/android/internal/app/
ShutdownThread.java
68
private static final ShutdownThread
sInstance
= new ShutdownThread();
163
sInstance
.mContext = context;
164
sInstance
.mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
165
sInstance
.mWakeLock = null;
166
if (
sInstance
.mPowerManager.isScreenOn()) {
168
sInstance
.mWakeLock =
sInstance
.mPowerManager.newWakeLock(
170
sInstance
.mWakeLock.acquire();
173
sInstance
.mWakeLock = null;
176
sInstance
.mHandler = new Handler()
[
all
...]
/frameworks/base/core/java/android/net/http/
CertificateChainValidator.java
52
private static final CertificateChainValidator
sInstance
59
return
sInstance
;
/packages/apps/Mms/src/com/android/mms/layout/
LayoutManager.java
38
private static LayoutManager
sInstance
;
74
if (
sInstance
!= null) {
77
sInstance
= new LayoutManager(context);
81
if (
sInstance
== null) {
84
return
sInstance
;
Completed in 612 milliseconds
1
2
3
4