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

/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiCollection.java26 * Constructs an instance as described by the selector
28 * @param selector
31 public UiCollection(UiSelector selector) { argument
32 super(selector);
37 * selector.
44 * @param childPattern {@link UiSelector} selector of the child pattern to match and return
72 * selector.
79 * @param childPattern {@link UiSelector} selector of the child pattern to match and return
94 * selector.
102 * @param childPattern {@link UiSelector} selector o
[all...]
H A DQueryController.java42 // During a pattern selector search, the recursive pattern search
47 // These help show each selector's search context as it relates to the previous sub selector
48 // matched. When a compound selector fails, it is hard to tell which part of it is failing.
49 // Seeing how a selector is being parsed and which sub selector failed within a long list
120 * Counts the instances of the selector group. The selector must be in the following
124 * @param selector
127 public int getPatternCount(UiSelector selector) { argument
137 findAccessibilityNodeInfo(UiSelector selector) argument
141 findAccessibilityNodeInfo(UiSelector selector, boolean isCounting) argument
215 translateCompoundSelector(UiSelector selector, AccessibilityNodeInfo fromNode, boolean isCounting) argument
285 translateReqularSelector(UiSelector selector, AccessibilityNodeInfo fromNode) argument
[all...]
H A DUiScrollable.java50 * @param container a {@link UiSelector} selector to identify the scrollable
55 // wrap the container selector with container so that QueryController can handle
86 * @param selector
90 protected boolean exists(UiSelector selector) { argument
91 if(getQueryController().findAccessibilityNodeInfo(selector) != null) {
99 * The search first looks for a child element that matches the selector
102 * representing the element matching the selector (not the child element in its
123 * The search first looks for a child element that matches the selector
126 * representing the element matching the selector (not the child element in its
151 * matches the selector yo
256 scrollIntoView(UiSelector selector) argument
[all...]
H A DUiObject.java32 * be reused for different views that match the selector criteria.
73 * selector criteria.
74 * @param selector
77 public UiObject(UiSelector selector) { argument
78 mSelector = selector;
82 * Debugging helper. A test can dump the properties of a selector as a string
94 * Retrieves the {@link QueryController} to translate a {@link UiSelector} selector
116 * @param selector for child view to match
120 public UiObject getChild(UiSelector selector) throws UiObjectNotFoundException { argument
121 Tracer.trace(selector);
134 getFromParent(UiSelector selector) argument
[all...]
H A DUiSelector.java73 UiSelector(UiSelector selector) { argument
74 mSelectorAttributes = selector.cloneSelector().mSelectorAttributes;
92 static UiSelector patternBuilder(UiSelector selector) { argument
93 if (!selector.hasPatternSelector()) {
94 return new UiSelector().patternSelector(selector);
96 return selector;
521 * Adds a child UiSelector criteria to this selector.
523 * Use this selector to narrow the search scope to
526 * @param selector
530 public UiSelector childSelector(UiSelector selector) { argument
534 patternSelector(UiSelector selector) argument
538 containerSelector(UiSelector selector) argument
553 fromParent(UiSelector selector) argument
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteChooserDialogFragment.java33 private final String ARGUMENT_SELECTOR = "selector";
48 * Gets the media route selector for filtering the routes that the user can select.
50 * @return The selector, never null.
70 * Sets the media route selector for filtering the routes that the user can select.
73 * @param selector The selector to set.
75 public void setRouteSelector(MediaRouteSelector selector) { argument
76 if (selector == null) {
77 throw new IllegalArgumentException("selector must not be null");
81 if (!mSelector.equals(selector)) {
[all...]
H A DMediaRouteDiscoveryFragment.java31 * The application must supply a route selector to specify the kinds of routes
37 private final String ARGUMENT_SELECTOR = "selector";
61 * Gets the media route selector for filtering the routes to be discovered.
63 * @return The selector, never null.
71 * Sets the media route selector for filtering the routes to be discovered.
74 * @param selector The selector to set.
76 public void setRouteSelector(MediaRouteSelector selector) { argument
77 if (selector == null) {
78 throw new IllegalArgumentException("selector mus
[all...]
H A DMediaRouteActionProvider.java37 * to select by specifying a {@link MediaRouteSelector selector} with the
70 * Then configure the menu and set the route selector for the chooser.
100 * // Remove the selector on stop to tell the media router that it no longer
151 * Gets the media route selector for filtering the routes that the user can
154 * @return The selector, never null.
162 * Sets the media route selector for filtering the routes that the user can
165 * @param selector The selector, must not be null.
167 public void setRouteSelector(@NonNull MediaRouteSelector selector) { argument
168 if (selector
[all...]
H A DMediaRouteChooserDialog.java44 * This dialog allows the user to choose a route that matches a given selector.
73 * Gets the media route selector for filtering the routes that the user can select.
75 * @return The selector, never null.
83 * Sets the media route selector for filtering the routes that the user can select.
85 * @param selector The selector, must not be null.
87 public void setRouteSelector(@NonNull MediaRouteSelector selector) { argument
88 if (selector == null) {
89 throw new IllegalArgumentException("selector must not be null");
92 if (!mSelector.equals(selector)) {
[all...]
H A DMediaRouteButton.java48 * to select by specifying a {@link MediaRouteSelector selector} with the
52 * match the {@link #getRouteSelector() selector}, the button will appear in
56 * If no non-default routes match the selector and it is not possible for an active
60 * When a non-default route is selected that matches the selector, the button will
143 * Gets the media route selector for filtering the routes that the user can
146 * @return The selector, never null.
154 * Sets the media route selector for filtering the routes that the user can
157 * @param selector The selector, must not be null.
159 public void setRouteSelector(MediaRouteSelector selector) { argument
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteDiscoveryRequest.java28 private static final String KEY_SELECTOR = "selector";
37 * @param selector The route selector that specifies the kinds of routes to discover.
40 public MediaRouteDiscoveryRequest(MediaRouteSelector selector, boolean activeScan) { argument
41 if (selector == null) {
42 throw new IllegalArgumentException("selector must not be null");
46 mSelector = selector;
47 mBundle.putBundle(KEY_SELECTOR, selector.asBundle());
56 * Gets the route selector that specifies the kinds of routes to discover.
107 result.append("DiscoveryRequest{ selector
[all...]
H A DMediaRouteSelector.java43 * router.addCallback(selector, callback, MediaRouter.CALLBACK_FLAG_REQUEST_DISCOVERY);
53 * An empty media route selector that will not match any routes.
63 * Gets the list of {@link MediaControlIntent media control categories} in the selector.
82 * Returns true if the selector contains the specified category.
101 * Returns true if the selector matches at least one of the specified control filters.
128 * Returns true if this selector contains all of the capabilities described
129 * by the specified selector.
131 * @param selector The selector to be examined.
132 * @return True if this selector contain
135 contains(MediaRouteSelector selector) argument
225 Builder(@onNull MediaRouteSelector selector) argument
286 addSelector(@onNull MediaRouteSelector selector) argument
[all...]
H A DMediaRouter.java336 * Returns the selected route if it matches the specified selector, otherwise
339 * @param selector The selector to match.
340 * @return The previously selected route if it matched the selector, otherwise the
348 public RouteInfo updateSelectedRoute(@NonNull MediaRouteSelector selector) { argument
349 if (selector == null) {
350 throw new IllegalArgumentException("selector must not be null");
355 Log.d(TAG, "updateSelectedRoute: " + selector);
358 if (!route.isDefault() && !route.matchesSelector(selector)) {
406 * Returns true if there is a route that matches the specified selector
427 isRouteAvailable(@onNull MediaRouteSelector selector, int flags) argument
449 addCallback(MediaRouteSelector selector, Callback callback) argument
546 addCallback(@onNull MediaRouteSelector selector, @NonNull Callback callback, @CallbackFlags int flags) argument
958 matchesSelector(@onNull MediaRouteSelector selector) argument
1770 isRouteAvailable(MediaRouteSelector selector, int flags) argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DListRowPresenter.java275 public final void setHoverCardPresenterSelector(PresenterSelector selector) { argument
276 mHoverCardPresenterSelector = selector;
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java360 * Sets a drawable to use as the list item selector.
362 * @param selector List selector drawable to use in the popup.
364 public void setListSelector(Drawable selector) { argument
365 mDropDownListHighlight = selector;
1525 /** Whether to force drawing of the pressed state selector. */
1609 * Starts an alpha animation on the selector. When the animation ends,
1683 // which will also update the selector state.
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java377 * Sets a drawable to use as the list item selector.
379 * @param selector List selector drawable to use in the popup.
381 public void setListSelector(Drawable selector) { argument
382 mDropDownListHighlight = selector;
1533 /** Whether to force drawing of the pressed state selector. */
1616 * Starts an alpha animation on the selector. When the animation ends,
1640 // the children. This will ensure the selector actually gets drawn.
1648 // This needs some explanation. We need to disable the selector for this next call
1650 // will draw the selector an
[all...]
/frameworks/base/core/java/android/content/
H A DIntent.java2991 * Intent with this category in the selector.</p>
3003 * Intent with this category in the selector.</p>
3015 * Intent with this category in the selector.</p>
3027 * Intent with this category in the selector.</p>
3039 * Intent with this category in the selector.</p>
3052 * Intent with this category in the selector.</p>
3064 * Intent with this category in the selector.</p>
3076 * Intent with this category in the selector.</p>
3089 * Intent with this category in the selector.</p>
4223 * specifying a specific activity to run but giving a selector t
5835 setSelector(Intent selector) argument
[all...]

Completed in 8805 milliseconds