Searched defs:scrap (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/content/res/
H A DTypedArray.java1060 public int[] extractThemeAttrs(@Nullable int[] scrap) { argument
1087 if (scrap != null && scrap.length == N) {
1088 attrs = scrap;
/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp221 char scrap[SIZE]; local
234 strncpy(scrap, name, index);
235 scrap[index] = 0;
236 f = (__eglMustCastToProperFunctionPointerType)dlsym(dso, scrap);
237 //ALOGD_IF(f, "found <%s> instead", scrap);
244 snprintf(scrap, SIZE, "%sOES", name);
245 f = (__eglMustCastToProperFunctionPointerType)dlsym(dso, scrap);
246 //ALOGD_IF(f, "found <%s> instead", scrap);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewAnimationsTest.java613 public void putRecycledView(RecyclerView.ViewHolder scrap) {
614 super.putRecycledView(scrap);
689 }, PositionConstraint.scrap(6, -1, 5), PositionConstraint.scrap(5, -1, 6),
690 PositionConstraint.scrap(7, -1, 7), PositionConstraint.scrap(8, -1, 8),
691 PositionConstraint.scrap(9, -1, 9));
1104 }, PositionConstraint.scrap(2, 2, -1), PositionConstraint.scrap(1, 1, 1),
1105 PositionConstraint.scrap(
1699 scrap, enum constant in enum:RecyclerViewAnimationsTest.PositionConstraint.Type
1714 public static PositionConstraint scrap(int oldPos, int preLayoutPos, int postLayoutPos) { method in class:RecyclerViewAnimationsTest.PositionConstraint
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsListView.java2312 * the returned view was taken from the scrap heap, false if otherwise.
2331 // If we failed to re-bind the data, scrap the obtained view.
2349 // Failed to re-bind the data, return scrap to the heap.
2863 // Detach any view left in the scrap heap
6056 // Pretend they went through the scrap heap
6308 * scrap heap.
6348 * inside the RecycleBin's scrap heap. This listener is used to free resources
6356 * Indicates that the specified View was moved into the recycler's scrap heap.
6421 final ArrayList<View> scrap = mCurrentScrap;
6422 final int scrapCount = scrap
6586 addScrapView(View scrap, int position) argument
6858 clearScrap(final ArrayList<View> scrap) argument
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1082 * Recycled view pools allow multiple RecyclerViews to share a common pool of scrap views.
2940 Log.e(TAG, "cannot find old changed holder in changed scrap :/" + oldHolder);
4196 final ViewHolder scrap = scrapHeap.get(index);
4198 return scrap;
4214 public void putRecycledView(ViewHolder scrap) { argument
4215 final int viewType = scrap.getItemViewType();
4220 if (DEBUG && scrapHeap.contains(scrap)) {
4221 throw new IllegalArgumentException("this scrap item already exists");
4223 scrap.resetInternal();
4224 scrapHeap.add(scrap);
[all...]

Completed in 411 milliseconds