Searched defs:get (Results 101 - 125 of 274) sorted by relevance

1234567891011

/frameworks/base/services/core/java/com/android/server/
H A DAttributeCache.java98 public Entry get(String packageName, int resId, int[] styleable, int userId) { method in class:AttributeCache
100 Package pkg = mPackages.get(packageName);
104 map = pkg.mMap.get(resId);
106 ent = map.get(styleable);
/frameworks/base/services/core/java/com/android/server/job/controllers/
H A DConnectivityController.java58 public static ConnectivityController get(JobSchedulerService jms) { method in class:ConnectivityController
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLruCache.java53 * if (cache.get(key) == null) {
59 * value of null from {@link #get}, {@link #put} or {@link #remove} is
115 public final V get(K key) { method in class:LruCache
122 mapValue = map.get(key);
211 // get the last item in the linked list.
341 * Returns the number of times {@link #get} returned a value that was
349 * Returns the number of times {@link #get} returned null or required a new
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
H A DAnnotationAnalyzer.java64 public static AnnotationAnalyzer get() { method in class:AnnotationAnalyzer
70 TypeKind typeKind = PRIMITIVE_TYPES.get(className);
113 final AnnotationClass clazz = findClass(templateParameters.get(i), imports);
115 L.e("cannot find type argument for %s in %s", templateParameters.get(i),
140 String importedClass = imports.get(className);
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2RequestSettingsSet.java88 Object currentValue = get(key);
134 public <T> T get(Key<T> key) { method in class:Camera2RequestSettingsSet
138 return (T) mDictionary.get(key);
146 * to its default value or simply unset. While {@link #get} will return
173 return Objects.equals(get(key), value);
248 T value = get(key);
/frameworks/minikin/include/minikin/
H A DSparseBitSet.h48 bool get(uint32_t ch) const { function in class:android::SparseBitSet
/frameworks/native/include/ui/
H A DGraphicBufferAllocator.h62 static inline GraphicBufferAllocator& get() { return getInstance(); } function in class:android::GraphicBufferAllocator
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DUnrefedBitmapCache.java120 public ReusableBitmap get(final RequestKey key, final boolean incrementRefCount) { method in class:UnrefedBitmapCache
121 if (mNullRequests != null && mNullRequests.get(key) != null) {
124 return super.get(key, incrementRefCount);
H A DUnrefedPooledCache.java72 public V get(K key, boolean incrementRefCount) { method in class:UnrefedPooledCache
73 Trace.beginSection("cache get");
75 V result = mCache.get(key);
77 result = mNonPooledCache.get(key);
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DInputStreamBuffer.java74 * If <code>autoAdvance</code> is true, behavior is undefined if you call {@link #get(int)}
75 * or {@link #has(int)} with an index N, then some arbitrary time later call {@link #get(int)}
110 * Attempt to get byte at the requested index from the wrapped input stream. If the internal
129 public byte get(final int index) throws IllegalStateException, IndexOutOfBoundsException { method in class:InputStreamBuffer
130 Trace.beginSection("get");
147 * If this method returns true, it is guaranteed that {@link #get(int)} with the same index
153 * See {@link #get(int)} for caveats. A lot of the same warnings about exceptions and
184 * Advancing does not fill the internal buffer. The next {@link #get(int)} or
/frameworks/opt/net/wifi/service/jni/
H A Djni_helper.h20 T get() const { function in class:android::JNIObject
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DInputStreamBuffer.java74 * If <code>autoAdvance</code> is true, behavior is undefined if you call {@link #get(int)}
75 * or {@link #has(int)} with an index N, then some arbitrary time later call {@link #get(int)}
110 * Attempt to get byte at the requested index from the wrapped input stream. If the internal
129 public byte get(final int index) throws IllegalStateException, IndexOutOfBoundsException { method in class:InputStreamBuffer
130 Trace.beginSection("get");
147 * If this method returns true, it is guaranteed that {@link #get(int)} with the same index
153 * See {@link #get(int)} for caveats. A lot of the same warnings about exceptions and
184 * Advancing does not fill the internal buffer. The next {@link #get(int)} or
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
H A DPartner.java48 * Convenience to get a drawable from partner overlay, or if not available, the drawable from
59 * Convenience to get a string from partner overlay, or if not available, the string from the
75 * resources from the original context is returned. Clients can then get the resource by
80 final Partner partner = Partner.get(context);
111 public static synchronized Partner get(Context context) { method in class:Partner
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DArrayObjectAdapter.java55 public Object get(int index) { method in class:ArrayObjectAdapter
56 return mItems.get(index);
H A DCursorObjectAdapter.java137 public Object get(int index) { method in class:CursorObjectAdapter
144 Object item = mItemCache.get(index);
173 * from the data source the next time (@link #get(int)} is called.
H A DSparseArrayObjectAdapter.java40 public Object get(int position) { method in class:SparseArrayObjectAdapter
124 return mItems.get(key);
/frameworks/support/v4/java/android/support/v4/util/
H A DCircularArray.java229 public E get(int n) { method in class:CircularArray
H A DCircularIntArray.java186 public int get(int n) { method in class:CircularIntArray
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DMatrix2f.java67 public float get(int x, int y) { method in class:Matrix2f
141 float rhs_ij = rhs.get(i,j);
142 ri0 += lhs.get(j,0) * rhs_ij;
143 ri1 += lhs.get(j,1) * rhs_ij;
/frameworks/volley/src/main/java/com/android/volley/
H A DCache.java31 public Entry get(String key); method in interface:Cache
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DRequestFuture.java43 * JSONObject response = future.get();
86 public T get() throws InterruptedException, ExecutionException { method in class:RequestFuture
95 public T get(long timeout, TimeUnit unit) method in class:RequestFuture
/frameworks/volley/src/test/java/com/android/volley/mock/
H A DMockCache.java37 public Entry get(String key) { method in class:MockCache
/frameworks/av/media/libmedia/
H A DAudioParameter.cpp130 status_t AudioParameter::get(const String8& key, String8& value) function in class:android::AudioParameter
143 status_t result = get(key, str8);
159 status_t result = get(key, str8);
/frameworks/base/core/java/android/content/
H A DContentValues.java236 * @param key the value to get
239 public Object get(String key) { method in class:ContentValues
240 return mValues.get(key);
246 * @param key the value to get
250 Object value = mValues.get(key);
257 * @param key the value to get
261 Object value = mValues.get(key);
282 * @param key the value to get
286 Object value = mValues.get(key);
307 * @param key the value to get
[all...]
/frameworks/base/core/java/android/database/
H A DMatrixCursor.java64 private Object get(int column) { method in class:MatrixCursor
164 localData[start + i] = columnValues.get(i);
254 Object value = get(column);
261 Object value = get(column);
269 Object value = get(column);
277 Object value = get(column);
285 Object value = get(column);
293 Object value = get(column);
301 Object value = get(column);
307 return DatabaseUtils.getTypeOfObject(get(colum
[all...]

Completed in 2109 milliseconds

1234567891011