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

/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp257 char scrap[SIZE]; local
270 strncpy(scrap, name, index);
271 scrap[index] = 0;
272 f = (__eglMustCastToProperFunctionPointerType)dlsym(dso, scrap);
273 //ALOGD_IF(f, "found <%s> instead", scrap);
280 snprintf(scrap, SIZE, "%sOES", name);
281 f = (__eglMustCastToProperFunctionPointerType)dlsym(dso, scrap);
282 //ALOGD_IF(f, "found <%s> instead", scrap);
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java1119 public int[] extractThemeAttrs(@Nullable int[] scrap) { argument
1146 if (scrap != null && scrap.length == N) {
1147 attrs = scrap;
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseRecyclerViewAnimationsTest.java124 builder.append("scrap:\n");
501 // true if found in scrap
530 scrap, enum constant in enum:BaseRecyclerViewAnimationsTest.PositionConstraint.Type
532 adapterScrap /*first pass adapter, second pass scrap*/
545 public static PositionConstraint scrap(int oldPos, int preLayoutPos, int postLayoutPos) { method in class:BaseRecyclerViewAnimationsTest.PositionConstraint
547 constraint.mType = Type.scrap;
597 if (mType == Type.scrap || (mType == Type.adapterScrap && !state.isPreLayout())) {
598 assertNotNull(this + ": result should come from scrap\n" + log, result.scrapResult);
613 if (mType == Type.scrap) {
/frameworks/base/core/java/android/widget/
H A DAbsListView.java2325 * the returned view was taken from the "temporary detached" scrap heap, false if
2345 // If we failed to re-bind the data, scrap the obtained view.
2363 // Failed to re-bind the data, return scrap to the heap.
2946 // Detach any view left in the scrap heap
6234 // Pretend they went through the scrap heap
6486 * scrap heap.
6530 * inside the RecycleBin's scrap heap. This listener is used to free resources
6538 * Indicates that the specified View was moved into the recycler's scrap heap.
6603 final ArrayList<View> scrap = mCurrentScrap;
6604 final int scrapCount = scrap
6768 addScrapView(View scrap, int position) argument
7056 clearScrap(final ArrayList<View> scrap) argument
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1187 * Recycled view pools allow multiple RecyclerViews to share a common pool of scrap views.
4644 final ViewHolder scrap = scrapHeap.get(index);
4646 return scrap;
4662 public void putRecycledView(ViewHolder scrap) { argument
4663 final int viewType = scrap.getItemViewType();
4668 if (DEBUG && scrapHeap.contains(scrap)) {
4669 throw new IllegalArgumentException("this scrap item already exists");
4671 scrap.resetInternal();
4672 scrapHeap.add(scrap);
4709 ArrayList<ViewHolder> scrap
[all...]

Completed in 427 milliseconds