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
185
) sorted by null
1
2
3
4
5
6
7
8
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_scoring.cpp
20
const TypingScoring TypingScoring::
sInstance
;
typing_suggest_policy.cpp
20
const TypingSuggestPolicy TypingSuggestPolicy::
sInstance
;
typing_weighting.cpp
24
const TypingWeighting TypingWeighting::
sInstance
;
typing_traversal.cpp
23
const TypingTraversal TypingTraversal::
sInstance
;
typing_suggest_policy.h
34
static const TypingSuggestPolicy *getInstance() { return &
sInstance
; }
52
static const TypingSuggestPolicy
sInstance
;
/frameworks/base/core/java/com/android/internal/os/
BackgroundThread.java
26
private static BackgroundThread
sInstance
;
34
if (
sInstance
== null) {
35
sInstance
= new BackgroundThread();
36
sInstance
.start();
37
sHandler = new Handler(
sInstance
.getLooper());
44
return
sInstance
;
/frameworks/base/services/java/com/android/server/
FgThread.java
31
private static FgThread
sInstance
;
39
if (
sInstance
== null) {
40
sInstance
= new FgThread();
41
sInstance
.start();
42
sHandler = new Handler(
sInstance
.getLooper());
55
return
sInstance
;
IoThread.java
28
private static IoThread
sInstance
;
36
if (
sInstance
== null) {
37
sInstance
= new IoThread();
38
sInstance
.start();
39
sHandler = new Handler(
sInstance
.getLooper());
52
return
sInstance
;
UiThread.java
30
private static UiThread
sInstance
;
38
if (
sInstance
== null) {
39
sInstance
= new UiThread();
40
sInstance
.start();
41
sHandler = new Handler(
sInstance
.getLooper());
61
return
sInstance
;
/frameworks/base/core/java/android/os/
NullVibrator.java
27
private static final NullVibrator
sInstance
= new NullVibrator();
33
return
sInstance
;
/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
43
if (
sInstance
!= null)
44
return
sInstance
;
46
sInstance
= new DateKeyListener();
47
return
sInstance
;
61
private static DateKeyListener
sInstance
;
DateTimeKeyListener.java
43
if (
sInstance
!= null)
44
return
sInstance
;
46
sInstance
= new DateTimeKeyListener();
47
return
sInstance
;
61
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
43
if (
sInstance
!= null)
44
return
sInstance
;
46
sInstance
= new TimeKeyListener();
47
return
sInstance
;
61
private static TimeKeyListener
sInstance
;
DialerKeyListener.java
40
if (
sInstance
!= null)
41
return
sInstance
;
43
sInstance
= new DialerKeyListener();
44
return
sInstance
;
116
private static DialerKeyListener
sInstance
;
/hardware/qcom/display/msm8960/libqdutils/
idle_invalidator.h
43
static android::sp<IdleInvalidator>
sInstance
;
/hardware/qcom/display/msm8974/libqdutils/
idle_invalidator.h
44
static android::sp<IdleInvalidator>
sInstance
;
/hardware/qcom/display/msm8x26/libqdutils/
idle_invalidator.h
43
static android::sp<IdleInvalidator>
sInstance
;
/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/vold/
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
;
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationClientNameProvider.java
16
private static InvalidationClientNameProvider
sInstance
;
26
if (
sInstance
== null) {
27
sInstance
= new InvalidationClientNameProvider();
29
return
sInstance
;
Completed in 540 milliseconds
1
2
3
4
5
6
7
8