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

/frameworks/base/opengl/libs/EGL/
H A DLoader.cpp225 char scrap[SIZE]; local
238 strncpy(scrap, name, index);
239 scrap[index] = 0;
240 f = (__eglMustCastToProperFunctionPointerType)dlsym(dso, scrap);
241 //LOGD_IF(f, "found <%s> instead", scrap);
248 snprintf(scrap, SIZE, "%sOES", name);
249 f = (__eglMustCastToProperFunctionPointerType)dlsym(dso, scrap);
250 //LOGD_IF(f, "found <%s> instead", scrap);
/frameworks/base/core/java/android/widget/
H A DAbsListView.java1995 * the returned view was taken from the scrap heap, false if otherwise.
2362 // Detach any view left in the scrap heap
5443 // Pretend they went through the scrap heap
5475 final ArrayList<View> scrap = mRecycler.mCurrentScrap;
5476 if (!checkScrap(scrap)) result = false;
5487 private boolean checkScrap(ArrayList<View> scrap) { argument
5488 if (scrap == null) return true;
5491 final int count = scrap.size();
5493 final View view = scrap.get(i);
5497 " has a view in its scrap hea
5912 addScrapView(View scrap, int position) argument
[all...]

Completed in 79 milliseconds