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

/frameworks/base/core/java/android/view/
H A DViewGroup.java931 public void findViewsWithText(ArrayList<View> outViews, CharSequence text, int flags) { argument
932 super.findViewsWithText(outViews, text, flags);
939 child.findViewsWithText(outViews, text, flags);
H A DView.java6736 * @param outViews The output list of matching Views.
6743 public void findViewsWithText(ArrayList<View> outViews, CharSequence searched, int flags) { argument
6746 outViews.add(this);
6754 outViews.add(this);
/frameworks/base/core/java/android/widget/
H A DTextView.java7916 public void findViewsWithText(ArrayList<View> outViews, CharSequence searched, int flags) { argument
7917 super.findViewsWithText(outViews, searched, flags);
7918 if (!outViews.contains(this) && (flags & FIND_VIEWS_WITH_TEXT) != 0
7923 outViews.add(this);

Completed in 124 milliseconds