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

/frameworks/base/core/java/android/view/
H A DViewGroup.java1333 public void findViewsWithText(ArrayList<View> outViews, CharSequence text, int flags) { argument
1334 super.findViewsWithText(outViews, text, flags);
1341 child.findViewsWithText(outViews, text, flags);
H A DView.java10567 * @param outViews The output list of matching Views.
10574 public void findViewsWithText(ArrayList<View> outViews, CharSequence searched, argument
10578 outViews.add(this);
10586 outViews.add(this);
/frameworks/base/core/java/android/widget/
H A DTextView.java9891 public void findViewsWithText(ArrayList<View> outViews, CharSequence searched, int flags) { argument
9892 super.findViewsWithText(outViews, searched, flags);
9893 if (!outViews.contains(this) && (flags & FIND_VIEWS_WITH_TEXT) != 0
9898 outViews.add(this);

Completed in 164 milliseconds