OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sCache
(Results
1 - 17
of
17
) sorted by null
/frameworks/native/opengl/libs/EGL/
egl_cache.h
122
//
sCache
is the singleton egl_cache_t object.
123
static egl_cache_t
sCache
;
egl_cache.cpp
83
egl_cache_t egl_cache_t::
sCache
;
86
return &
sCache
;
/frameworks/base/media/java/android/media/
CameraProfile.java
47
private static final HashMap<Integer, int[]>
sCache
= new HashMap<Integer, int[]>();
81
synchronized (
sCache
) {
82
int[] levels =
sCache
.get(cameraId);
85
sCache
.put(cameraId, levels);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
TargetPackageInfoGetterTask.java
28
private static final LruCache<String, PackageInfo>
sCache
=
33
return
sCache
.get(packageName);
37
sCache
.remove(packageName);
59
sCache
.put(packageName[0], packageInfo);
/frameworks/base/core/java/android/os/
ServiceManager.java
31
private static HashMap<String, IBinder>
sCache
= new HashMap<String, IBinder>();
51
IBinder service =
sCache
.get(name);
101
IBinder service =
sCache
.get(name);
134
if (
sCache
.size() != 0) {
137
sCache
.putAll(cache);
/frameworks/base/core/java/android/content/res/
ColorStateList.java
69
private static final SparseArray<WeakReference<ColorStateList>>
sCache
=
98
synchronized (
sCache
) {
99
WeakReference<ColorStateList> ref =
sCache
.get(color);
107
sCache
.put(color, new WeakReference<ColorStateList>(csl));
/frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java
33
private static Object[]
sCache
= new Object[CACHE_SIZE];
111
Object cache =
sCache
[bucket];
115
sCache
[bucket] = cache;
/packages/apps/Exchange/src/com/android/exchange/eas/
EasConnectionCache.java
66
private static EasConnectionCache
sCache
= null;
70
if (
sCache
== null) {
71
sCache
= new EasConnectionCache();
73
return
sCache
;
/frameworks/support/v4/java/android/support/v4/content/
FileProvider.java
319
// @GuardedBy("
sCache
")
320
private static HashMap<String, PathStrategy>
sCache
= new HashMap<String, PathStrategy>();
530
synchronized (
sCache
) {
531
strat =
sCache
.get(authority);
542
sCache
.put(authority, strat);
[
all
...]
/packages/apps/InCallUI/src/com/android/incallui/
ContactInfoCache.java
62
private static ContactInfoCache
sCache
= null;
65
if (
sCache
== null) {
66
sCache
= new ContactInfoCache(mContext);
68
return
sCache
;
/prebuilts/devtools/tools/lib/
common.jar
/prebuilts/gradle-plugin/com/android/tools/common/22.2.0/
common-22.2.0.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.2.0/
lint-api-22.2.0.jar
/development/samples/training/NavigationDrawer/libs/
android-support-v4.jar
/prebuilts/maven_repo/android/com/android/support/support-v4/13.0.0/
support-v4-13.0.0.jar
/prebuilts/maven_repo/android/com/android/support/support-v4/18.0.0/
support-v4-18.0.0.jar
/prebuilts/maven_repo/android/com/android/support/support-v4/19.0.0/
support-v4-19.0.0.jar
Completed in 467 milliseconds