Home
last modified time | relevance | path

Searched refs:parentMatcher (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/androidTest/java/com/android/car/ui/matchers/
H A DNthChildMatcher.java31 public NthChildMatcher(Matcher<View> parentMatcher, int position) { in NthChildMatcher() argument
32 mParentMatcher = parentMatcher; in NthChildMatcher()
H A DViewMatchers.java48 public static Matcher<View> nthChildOfView(Matcher<View> parentMatcher, int n) { in nthChildOfView() argument
49 return new NthChildMatcher(parentMatcher, n); in nthChildOfView()