Searched defs:get (Results 1 - 25 of 142) sorted by last modified time

123456

/frameworks/opt/mms/src/java/com/google/android/mms/util/
H A DAbstractCache.java64 public V get(K key) { method in class:AbstractCache
66 Log.v(TAG, "Trying to get " + key + " from cache.");
70 CacheEntry<V> cacheEntry = mCacheMap.get(key);
/frameworks/rs/
H A DrsMatrix2x2.h28 inline float get(uint32_t x, uint32_t y) const { function in struct:android::renderscript::Matrix2x2
H A DrsMatrix3x3.h28 inline float get(uint32_t x, uint32_t y) const { function in struct:android::renderscript::Matrix3x3
H A DrsMatrix4x4.h28 float get(uint32_t x, uint32_t y) const { function in struct:android::renderscript::Matrix4x4
H A DrsObjectBase.h106 mRef = ref.get();
151 inline T * get() const { function in class:android::renderscript::ObjectBaseRef
/frameworks/support/renderscript/v8/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;
H A DMatrix3f.java67 public float get(int x, int y) { method in class:Matrix3f
216 float rhs_ij = rhs.get(i,j);
217 ri0 += lhs.get(j,0) * rhs_ij;
218 ri1 += lhs.get(j,1) * rhs_ij;
219 ri2 += lhs.get(j,2) * rhs_ij;
H A DMatrix4f.java67 public float get(int x, int y) { method in class:Matrix4f
233 float rhs_ij = rhs.get(i,j);
234 ri0 += lhs.get(j,0) * rhs_ij;
235 ri1 += lhs.get(j,1) * rhs_ij;
236 ri2 += lhs.get(j,2) * rhs_ij;
237 ri3 += lhs.get(j,3) * rhs_ij;
/frameworks/support/renderscript/v8/rs_support/
H A DrsMatrix2x2.h28 inline float get(uint32_t x, uint32_t y) const { function in struct:android::renderscript::Matrix2x2
H A DrsMatrix3x3.h28 inline float get(uint32_t x, uint32_t y) const { function in struct:android::renderscript::Matrix3x3
H A DrsMatrix4x4.h28 float get(uint32_t x, uint32_t y) const { function in struct:android::renderscript::Matrix4x4
H A DrsObjectBase.h106 mRef = ref.get();
151 inline T * get() const { function in class:android::renderscript::ObjectBaseRef
/frameworks/support/v4/java/android/support/v4/content/
H A DModernAsyncTask.java131 final Result result = get();
150 final boolean wasTaskInvoked = mTaskInvoked.get();
320 public final Result get() throws InterruptedException, ExecutionException { method in class:ModernAsyncTask
321 return mFuture.get();
339 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, method in class:ModernAsyncTask
341 return mFuture.get(timeout, unit);
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java70 public E get(long key) { method in class:LongSparseArray
71 return get(key, null);
79 public E get(long key, E valueIfKeyNotFound) { method in class:LongSparseArray
H A DLruCache.java61 public final V get(K key) { method in class:LruCache
68 mapValue = map.get(key);
277 * Returns the number of times {@link #get} returned a value.
284 * Returns the number of times {@link #get} returned null or required a new
H A DSparseArrayCompat.java51 public E get(int key) { method in class:SparseArrayCompat
52 return get(key, null);
59 public E get(int key, E valueIfKeyNotFound) { method in class:SparseArrayCompat
/frameworks/support/volley/src/com/android/volley/
H A DCache.java28 public Entry get(String key); method in interface:Cache
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java104 public synchronized Entry get(String key) { method in class:DiskBasedCache
105 CacheHeader entry = mEntries.get(key);
171 Entry entry = get(key);
287 CacheHeader oldEntry = mEntries.get(key);
297 CacheHeader entry = mEntries.get(key);
369 // don't bother deleting, it'll get pruned eventually
H A DNoCache.java30 public Entry get(String key) { method in class:NoCache
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/support/volley/tests/src/com/android/volley/mock/
H A DMockCache.java37 public Entry get(String key) { method in class:MockCache
/frameworks/compile/mclinker/include/mcld/Support/
H A DTargetRegistry.h96 return TargetLDBackendCtorFn(*get(), Triple);
108 const llvm::Target* get() const function in class:mcld::Target
/frameworks/native/include/ui/
H A DGraphicBufferAllocator.h62 static inline GraphicBufferAllocator& get() { return getInstance(); } function in class:android::GraphicBufferAllocator
H A DGraphicBufferMapper.h39 static inline GraphicBufferMapper& get() { return getInstance(); } function in class:android::GraphicBufferMapper
/frameworks/native/include/utils/
H A DGenerationCache.h73 const V& get(const K& key);
150 const V& GenerationCache<K, V>::get(const K& key) { function in class:android::GenerationCache
202 if (mOldest.get()) {
218 if (!mYoungest.get()) {
229 if (entry->parent.get()) {
235 if (entry->child.get()) {

Completed in 234 milliseconds

123456