Searched defs:outViews (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/
H A DViewGroup.java1157 public void findViewsWithText(ArrayList<View> outViews, CharSequence text, int flags) { argument
1158 super.findViewsWithText(outViews, text, flags);
1165 child.findViewsWithText(outViews, text, flags);
H A DView.java8228 * @param outViews The output list of matching Views.
8235 public void findViewsWithText(ArrayList<View> outViews, CharSequence searched, argument
8239 outViews.add(this);
8247 outViews.add(this);
/frameworks/base/core/java/android/widget/
H A DTextView.java8517 public void findViewsWithText(ArrayList<View> outViews, CharSequence searched, int flags) { argument
8518 super.findViewsWithText(outViews, searched, flags);
8519 if (!outViews.contains(this) && (flags & FIND_VIEWS_WITH_TEXT) != 0
8524 outViews.add(this);

Completed in 131 milliseconds