Searched defs:get (Results 76 - 100 of 234) sorted by relevance

12345678910

/frameworks/base/drm/java/android/drm/
H A DDrmInfo.java107 public Object get(String key) { method in class:DrmInfo
108 return mAttributes.get(key);
H A DDrmInfoRequest.java24 * class is passed to the {@link DrmManagerClient#acquireDrmInfo acquireDrmInfo()} method to get an
113 public Object get(String key) { method in class:DrmInfoRequest
114 return mRequestInformation.get(key);
H A DDrmUtils.java126 * parser.get(extendedMetadataKey);<br>
205 public String get(String key) { method in class:DrmUtils.ExtendedMetadataParser
206 return mMap.get(key);
/frameworks/base/rs/java/android/renderscript/
H A DDouble2.java315 public double get(int i) { method in class:Double2
H A DDouble3.java336 public double get(int i) { method in class:Double3
H A DFloat2.java291 * get vector length
309 * get the vector field value by index
314 public float get(int i) { method in class:Float2
H A DFloat3.java313 * get vector length
331 * get the vector field value by index
336 public float get(int i) { method in class:Float3
H A DMatrix2f.java64 public float get(int x, int y) { method in class:Matrix2f
138 float rhs_ij = rhs.get(i,j);
139 ri0 += lhs.get(j,0) * rhs_ij;
140 ri1 += lhs.get(j,1) * rhs_ij;
H A DMatrix3f.java64 public float get(int x, int y) { method in class:Matrix3f
213 float rhs_ij = rhs.get(i,j);
214 ri0 += lhs.get(j,0) * rhs_ij;
215 ri1 += lhs.get(j,1) * rhs_ij;
216 ri2 += lhs.get(j,2) * rhs_ij;
/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/services/tests/servicestests/src/com/android/server/
H A DBroadcastInterceptingContext.java71 public Intent get() throws InterruptedException, ExecutionException { method in class:BroadcastInterceptingContext.BroadcastInterceptor
73 return get(5, TimeUnit.SECONDS);
/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/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/native/opengl/libs/EGL/
H A Degl_object.cpp56 bool egl_object_t::get(egl_display_t const* display, egl_object_t* object) { function in class:android::egl_object_t
75 ANativeWindow* const window = win.get();
/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/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/rs/
H A DrsObjectBase.h103 mRef = ref.get();
148 inline T * get() const { function in class:android::renderscript::ObjectBaseRef
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DArrayObjectAdapter.java53 public Object get(int index) { method in class:ArrayObjectAdapter
54 return mItems.get(index);
H A DCursorObjectAdapter.java137 public Object get(int index) { method in class:CursorObjectAdapter
144 Object item = mItemCache.get(index);
172 * 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);

Completed in 306 milliseconds

12345678910