Searched defs:selector (Results 1 - 7 of 7) sorted by relevance

/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiCollection.java24 public UiCollection(UiSelector selector) { argument
25 super(selector);
30 * selector.
37 * @param childPattern {@link UiSelector} selector of the child pattern to match and return
63 * selector.
70 * @param childPattern {@link UiSelector} selector of the child pattern to match and return
83 * selector.
91 * @param childPattern {@link UiSelector} selector of the child pattern to match and return
H A DQueryController.java43 // During a pattern selector search, the recursive pattern search
48 // These help show each selector's search context as it relates to the previous sub selector
49 // matched. When a compound selector fails, it is hard to tell which part of it is failing.
50 // Seeing how a selector is being parsed and which sub selector failed within a long list
122 * Counts the instances of the selector group. The selector must be in the following
126 * @param selector
129 public int getPatternCount(UiSelector selector) { argument
139 findAccessibilityNodeInfo(UiSelector selector) argument
143 findAccessibilityNodeInfo(UiSelector selector, boolean isCounting) argument
217 translateCompoundSelector(UiSelector selector, AccessibilityNodeInfo fromNode, boolean isCounting) argument
288 translateReqularSelector(UiSelector selector, AccessibilityNodeInfo fromNode) argument
[all...]
H A DUiObject.java47 * {@link UiSelector} selector properties.
49 * @param selector
51 public UiObject(UiSelector selector) { argument
53 mSelector = selector;
57 * Debugging helper. A test can dump the properties of a selector as a string
67 * Retrieves the {@link QueryController} to translate a {@link UiSelector} selector
90 * @param selector for UI element to match
93 public UiObject getChild(UiSelector selector) throws UiObjectNotFoundException { argument
94 return new UiObject(getSelector().childSelector(selector));
103 * @param selector fo
107 getFromParent(UiSelector selector) argument
[all...]
H A DUiScrollable.java48 * the items in the container will require specifying UiSelector as an item selector.
50 * @param container a {@link UiSelector} selector
53 // wrap the container selector with container so that QueryController can handle
80 * @param selector
83 protected boolean exists(UiSelector selector) { argument
84 if(getQueryController().findAccessibilityNodeInfo(selector) != null) {
99 * @param childPattern {@link UiSelector} selector of the child pattern to match and return
113 * @param childPattern {@link UiSelector} selector of the child pattern to match and return
132 * selector. It looks for any child matching the <code>childPattern</code> argument and
136 * @param childPattern {@link UiSelector} selector o
219 scrollIntoView(UiSelector selector) argument
[all...]
H A DUiSelector.java66 UiSelector(UiSelector selector) { argument
67 mSelectorAttributes = selector.cloneSelector().mSelectorAttributes;
82 static UiSelector patternBuilder(UiSelector selector) { argument
83 if(!selector.hasPatternSelector()) {
84 return new UiSelector().patternSelector(selector);
86 return selector;
452 * Adds a child UiSelector criteria to this selector.
454 * Use this selector to narrow the search scope to
457 * @param selector
460 public UiSelector childSelector(UiSelector selector) { argument
464 patternSelector(UiSelector selector) argument
468 containerSelector(UiSelector selector) argument
482 fromParent(UiSelector selector) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java334 * Sets a drawable to use as the list item selector.
336 * @param selector List selector drawable to use in the popup.
338 public void setListSelector(Drawable selector) { argument
339 mDropDownListHighlight = selector;
/frameworks/base/core/java/android/content/
H A DIntent.java2647 * Intent with this category in the selector.</p>
2659 * Intent with this category in the selector.</p>
2671 * Intent with this category in the selector.</p>
2683 * Intent with this category in the selector.</p>
2695 * Intent with this category in the selector.</p>
2708 * Intent with this category in the selector.</p>
2720 * Intent with this category in the selector.</p>
2732 * Intent with this category in the selector.</p>
2745 * Intent with this category in the selector.</p>
3554 * specifying a specific activity to run but giving a selector t
5044 setSelector(Intent selector) argument
[all...]

Completed in 1521 milliseconds