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

12345678910

/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 DCircularArray.java112 public final E get(int i) { method in class:CircularArray
H A DLongSparseArray.java95 public E get(long key) { method in class:LongSparseArray
96 return get(key, null);
104 public E get(long key, E valueIfKeyNotFound) { method in class:LongSparseArray
H A DLruCache.java77 public final V get(K key) { method in class:LruCache
84 mapValue = map.get(key);
293 * Returns the number of times {@link #get} returned a value that was
301 * Returns the number of times {@link #get} returned null or required a new
H A DSimpleArrayMap.java322 public V get(Object key) { method in class:SimpleArrayMap
545 Object theirs = map.get(key);
H A DSparseArrayCompat.java75 public E get(int key) { method in class:SparseArrayCompat
76 return get(key, null);
84 public E get(int key, E valueIfKeyNotFound) { method in class:SparseArrayCompat
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DActionBarPolicy.java37 public static ActionBarPolicy get(Context context) { method in class:ActionBarPolicy
53 return !ViewConfigurationCompat.hasPermanentMenuKey(ViewConfiguration.get(mContext));
68 // so they get what they expect.
87 // Older apps get the home button interaction enabled by default.
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAbsSpinnerCompat.java176 View view = mRecycler.get(selectedPosition);
427 View get(int position) { method in class:AbsSpinnerCompat.RecycleBin
429 View result = mScrapHeap.get(position);
H A DActivityChooserModel.java75 * ActivityChooserModel.get(context, "task_specific_history_file_name.xml");
333 public static ActivityChooserModel get(Context context, String historyFileName) { method in class:ActivityChooserModel
335 ActivityChooserModel dataModel = sDataModelRegistry.get(historyFileName);
416 return mActivities.get(index).resolveInfo;
433 ActivityResolveInfo currentActivity = activities.get(i);
468 ActivityResolveInfo chosenActivity = mActivities.get(index);
519 return mActivities.get(0).resolveInfo;
539 ActivityResolveInfo newDefaultActivity = mActivities.get(index);
540 ActivityResolveInfo oldDefaultActivity = mActivities.get(0);
698 ResolveInfo resolveInfo = resolveInfos.get(
[all...]
H A DTintManager.java189 PorterDuffColorFilter filter = COLOR_FILTER_CACHE.get(color, tintMode);
390 PorterDuffColorFilter get(int color, PorterDuff.Mode mode) { method in class:TintManager.ColorFilterLruCache
391 return get(generateCacheKey(color, mode));
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DChildHelper.java34 * methods like get getUnfilteredChildCount or getUnfilteredChildAt.
99 while (mBucket.get(offset)) { // ensure this offset is not hidden
182 final View view = mHiddenViews.get(i);
274 if (mBucket.get(index)) {
276 throw new IllegalArgumentException("cannot get index of a hidden child");
305 if (DEBUG && mBucket.get(offset)) {
334 if (mBucket.get(index)) {
385 boolean get(int index) { method in class:ChildHelper.Bucket
388 return next.get(index - BITS_PER_WORD);
437 if (next.get(
[all...]
H A DPositionMap.java77 public E get(int key) { method in class:PositionMap
78 return get(key, null);
86 public E get(int key, E valueIfKeyNotFound) { method in class:PositionMap
H A DRecyclerView.java332 final ViewConfiguration vc = ViewConfiguration.get(context);
563 final ViewConfiguration vc = ViewConfiguration.get(getContext());
1589 final OnItemTouchListener listener = mOnItemTouchListeners.get(i);
1619 final OnItemTouchListener listener = mOnItemTouchListeners.get(i);
1669 mScrollPointerId + " not found. Did any MotionEvents get skipped?");
1743 mScrollPointerId + " not found. Did any MotionEvents get skipped?");
2138 if (newChangedHolders != null && mState.mOldChangedHolders.get(key) != null) {
2169 appearingViewInitialBounds.get(itemHolder.itemView) : null;
2180 ItemHolderInfo preInfo = mState.mPreLayoutHolderMap.get(postHolder);
2200 ViewHolder oldHolder = mState.mOldChangedHolders.get(ke
8087 public <T> T get(int resourceId) { method in class:RecyclerView.State
[all...]
/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;
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/volley/src/com/android/volley/
H A DCache.java31 public Entry get(String key); method in interface:Cache
/frameworks/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java105 public synchronized Entry get(String key) { method in class:DiskBasedCache
106 CacheHeader entry = mEntries.get(key);
179 Entry entry = get(key);
300 CacheHeader oldEntry = mEntries.get(key);
310 CacheHeader entry = mEntries.get(key);
386 // don't bother deleting, it'll get pruned eventually
H A DImageLoader.java37 * The simple way to use this class is to call {@link ImageLoader#get(String, ImageListener)}
138 * @param isImmediate True if this was called during ImageLoader.get() variants.
170 public ImageContainer get(String requestUrl, final ImageListener listener) { method in class:ImageLoader
171 return get(requestUrl, listener, 0, 0);
186 public ImageContainer get(String requestUrl, ImageListener imageListener, method in class:ImageLoader
210 BatchedImageRequest request = mInFlightRequests.get(cacheKey);
327 BatchedImageRequest request = mInFlightRequests.get(mCacheKey);
335 request = mBatchedResponses.get(mCacheKey);
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/volley/tests/src/com/android/volley/mock/
H A DMockCache.java37 public Entry get(String key) { method in class:MockCache
/frameworks/volley/tests/src/com/android/volley/toolbox/
H A DNetworkImageViewTest.java39 public ImageContainer get(String requestUrl, ImageListener imageListener, int maxWidth, method in class:NetworkImageViewTest.MockImageLoader
/frameworks/rs/cpp/util/
H A DStrongPointer.h94 inline T* get() const { return m_ptr; } function in class:android::RSC::sp
214 return printStrongPointer(to, val.get());
/frameworks/rs/
H A DrsMatrix2x2.h28 inline float get(uint32_t col, uint32_t row) const { function in struct:android::renderscript::Matrix2x2

Completed in 334 milliseconds

12345678910