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

12345678910

/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
H A DrsMatrix3x3.h28 inline float get(uint32_t col, uint32_t row) const { function in struct:android::renderscript::Matrix3x3
H A DrsMatrix4x4.h28 float get(uint32_t col, uint32_t row) const { function in struct:android::renderscript::Matrix4x4
H A DrsObjectBase.h103 mRef = ref.get();
148 inline T * get() const { function in class:android::renderscript::ObjectBaseRef
/frameworks/rs/server/
H A DStrongPointer.h93 inline T* get() const { return m_ptr; } function in class:android::sp
213 return printStrongPointer(to, val.get());
/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.

Completed in 3030 milliseconds

12345678910