Searched defs:put (Results 1 - 25 of 58) sorted by relevance

123

/frameworks/base/core/java/android/content/res/
H A DConfigurationBoundResourceCache.java51 public void put(long key, Resources.Theme theme, ConstantState<T> constantState) { method in class:ConfigurationBoundResourceCache
61 mCache.put(themeKey, themedCache);
63 themedCache.put(key, new WeakReference<ConstantState<T>>(constantState));
95 // there is a potential race condition here where this entry may be put in
/frameworks/base/core/java/com/android/internal/app/
H A DProcessMap.java32 public E put(String name, int uid, E value) { method in class:ProcessMap
36 mMap.put(name, uids);
38 uids.put(uid, value);
/frameworks/base/libs/hwui/
H A DFboCache.cpp81 bool FboCache::put(GLuint fbo) { function in class:android::uirenderer::FboCache
/frameworks/base/libs/hwui/utils/
H A DTinyHashMap.h36 void put(TKey key, TValue value) { function in class:android::uirenderer::TinyHashMap
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DMultiUserAvatarCache.java48 public void put(int userId, Drawable image) { method in class:MultiUserAvatarCache
49 mCache.put(userId, image);
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DPooledCache.java22 V put(K key, V value); method in interface:PooledCache
H A DUnrefedBitmapCache.java131 public ReusableBitmap put(final RequestKey key, final ReusableBitmap value) { method in class:UnrefedBitmapCache
133 mNullRequests.put(key, NullReusableBitmap.getInstance());
137 return super.put(key, value);
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DContentValuesBuilder.java21 * ContentValues-like class which enables users to chain put() methods and restricts
31 public ContentValuesBuilder put(String key, String value) { method in class:ContentValuesBuilder
32 mContentValues.put(key, value);
37 public ContentValuesBuilder put(String key, Byte value) {
38 mContentValues.put(key, value);
42 public ContentValuesBuilder put(String key, Short value) {
43 mContentValues.put(key, value);
47 public ContentValuesBuilder put(String key, Integer value) { method in class:ContentValuesBuilder
48 mContentValues.put(key, value);
53 public ContentValuesBuilder put(Strin
73 public ContentValuesBuilder put(String key, byte[] value) { method in class:ContentValuesBuilder
[all...]
/frameworks/volley/src/com/android/volley/toolbox/
H A DNoCache.java35 public void put(String key, Entry entry) { method in class:NoCache
/frameworks/av/drm/common/
H A DDrmConstraints.cpp32 status_t DrmConstraints::put(const String8* key, const char* value) { function in class:DrmConstraints
H A DDrmInfoRequest.cpp41 status_t DrmInfoRequest::put(const String8& key, const String8& value) { function in class:DrmInfoRequest
H A DDrmMetadata.cpp25 status_t DrmMetadata::put(const String8* key, function in class:DrmMetadata
H A DDrmInfo.cpp44 status_t DrmInfo::put(const String8& key, const String8& value) { function in class:DrmInfo
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DKeyStoreLruCache.java57 // The task has updated (been made active since the last time it was put into the
68 final void put(Task.TaskKey key, V value) { method in class:KeyStoreLruCache
69 mCache.put(key.id, value);
70 mTaskKeys.put(key.id, key);
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DAbstractCache.java37 public boolean put(K key, V value) { method in class:AbstractCache
39 Log.v(TAG, "Trying to put " + key + " into cache.");
54 mCacheMap.put(key, cacheEntry);
/frameworks/base/core/java/android/net/http/
H A DHttpResponseCache.java210 @Override public CacheRequest put(URI uri, URLConnection urlConnection) throws IOException { method in class:HttpResponseCache
211 return delegate.put(uri, urlConnection);
/frameworks/base/core/java/android/util/
H A DLongSparseLongArray.java137 public void put(long key, long value) { method in class:LongSparseLongArray
226 put(key, value);
H A DLruCache.java50 * cache.put(key, value);
55 * value of null from {@link #get}, {@link #put} or {@link #remove} is
139 mapValue = map.put(key, createdValue);
142 // There was a conflict so undo that last put
143 map.put(key, mapValue);
164 public final V put(K key, V value) { method in class:LruCache
173 previous = map.put(key, value);
252 * {@link #remove}, or replaced by a call to {@link #put}. The default
259 * if the removal was caused by a {@link #put} or {@link #remove}.
261 * this removal was caused by a {@link #put}
[all...]
H A DSparseBooleanArray.java132 public void put(int key, boolean value) { method in class:SparseBooleanArray
226 put(key, value);
H A DSparseIntArray.java135 public void put(int key, int value) { method in class:SparseIntArray
224 put(key, value);
H A DSparseLongArray.java135 public void put(int key, long value) { method in class:SparseLongArray
224 put(key, value);
/frameworks/base/drm/java/android/drm/
H A DDrmInfo.java96 public void put(String key, Object value) { method in class:DrmInfo
97 mAttributes.put(key, value);
H A DDrmInfoRequest.java101 public void put(String key, Object value) { method in class:DrmInfoRequest
102 mRequestInformation.put(key, value);
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLruCache.java54 * cache.put(key, value);
59 * value of null from {@link #get}, {@link #put} or {@link #remove} is
144 mapValue = map.put(key, createdValue);
147 // There was a conflict so undo that last put
148 map.put(key, mapValue);
169 public final V put(K key, V value) { method in class:LruCache
178 previous = map.put(key, value);
263 * {@link #remove}, or replaced by a call to {@link #put}. The default
270 * if the removal was caused by a {@link #put} or {@link #remove}.
272 * this removal was caused by a {@link #put}
[all...]
/frameworks/ex/common/java/com/android/common/content/
H A DProjectionMap.java80 super.put(alias, column);
84 public String put(String key, String value) { method in class:ProjectionMap

Completed in 759 milliseconds

123