Searched defs:childPattern (Results 1 - 2 of 2) sorted by relevance

/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiCollection.java32 * It looks for any child matching the <code>childPattern</code> argument that has
34 * The returned UiObject will point at the <code>childPattern</code> instance that matched the
37 * @param childPattern {@link UiSelector} selector of the child pattern to match and return
38 * @param text String of the identifying child contents of of the <code>childPattern</code>
39 * @return {@link UiObject} pointing at and instance of <code>childPattern</code>
42 public UiObject getChildByDescription(UiSelector childPattern, String text) argument
45 int count = getChildCount(childPattern);
47 UiObject row = getChildByInstance(childPattern, x);
65 * It looks for any child matching the <code>childPattern</code> argument that has
70 * @param childPattern {
74 getChildByInstance(UiSelector childPattern, int instance) argument
96 getChildByText(UiSelector childPattern, String text) argument
126 getChildCount(UiSelector childPattern) argument
[all...]
H A DUiScrollable.java92 * container. It looks for any child matching the <code>childPattern</code> argument within its
94 * UI element matching the <code>childPattern</code> and not the sub element that matched the
99 * @param childPattern {@link UiSelector} selector of the child pattern to match and return
100 * @param text String of the identifying child contents of of the <code>childPattern</code>
101 * @return {@link UiObject} pointing at and instance of <code>childPattern</code>
105 public UiObject getChildByDescription(UiSelector childPattern, String text) argument
107 return getChildByDescription(childPattern, text, true);
113 * @param childPattern {@link UiSelector} selector of the child pattern to match and return
116 * @return {@link UiObject} pointing at and instance of <code>childPattern</code>
119 public UiObject getChildByDescription(UiSelector childPattern, Strin argument
141 getChildByInstance(UiSelector childPattern, int instance) argument
164 getChildByText(UiSelector childPattern, String text) argument
178 getChildByText(UiSelector childPattern, String text, boolean allowScrollSearch) argument
[all...]

Completed in 24 milliseconds