Searched refs:scrap (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp220 char scrap[SIZE]; local
233 strncpy(scrap, name, index);
234 scrap[index] = 0;
235 f = (__eglMustCastToProperFunctionPointerType)dlsym(dso, scrap);
236 //ALOGD_IF(f, "found <%s> instead", scrap);
243 snprintf(scrap, SIZE, "%sOES", name);
244 f = (__eglMustCastToProperFunctionPointerType)dlsym(dso, scrap);
245 //ALOGD_IF(f, "found <%s> instead", scrap);
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java1225 * @param optScrap Optional scrap view; will be reused if possible
1238 final View scrap = optType == positionViewType ?
1241 view = mAdapter.getView(position, scrap, this);
1243 if (view != scrap && scrap != null) {
1245 mRecycler.addScrap(scrap);
1515 ArrayList<View> scrap = mScrapViews[lp.viewType];
1516 if (scrap.size() < mMaxScrap) {
1517 scrap.add(v);
1534 ArrayList<View> scrap
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsListView.java2126 * the returned view was taken from the scrap heap, false if otherwise.
2597 // Detach any view left in the scrap heap
5838 // Pretend they went through the scrap heap
6082 * scrap heap.
6112 * inside the RecycleBin's scrap heap. This listener is used to free resources
6120 * Indicates that the specified View was moved into the recycler's scrap heap.
6184 final ArrayList<View> scrap = mCurrentScrap;
6185 final int scrapCount = scrap.size();
6187 scrap.get(i).forceLayout();
6192 final ArrayList<View> scrap
6322 addScrapView(View scrap, int position) argument
[all...]

Completed in 2263 milliseconds