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

/frameworks/base/core/java/android/view/
H A DViewGroup.java1395 public void findViewsWithText(ArrayList<View> outViews, CharSequence text, int flags) { argument
1396 super.findViewsWithText(outViews, text, flags);
1403 child.findViewsWithText(outViews, text, flags);
H A DView.java11239 * @param outViews The output list of matching Views.
11246 public void findViewsWithText(ArrayList<View> outViews, CharSequence searched, argument
11250 outViews.add(this);
11258 outViews.add(this);
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java10290 public void findViewsWithText(ArrayList<View> outViews, CharSequence searched, int flags) { argument
10291 super.findViewsWithText(outViews, searched, flags);
10292 if (!outViews.contains(this) && (flags & FIND_VIEWS_WITH_TEXT) != 0
10297 outViews.add(this);

Completed in 207 milliseconds