Searched refs:selector (Results 1 - 24 of 24) sorted by relevance

/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/testing/uiautomator/library/core-src/com/android/uiautomator/core/
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 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...]
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 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...]
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
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 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 DMediaRouter.java310 * Returns the selected route if it matches the specified selector, otherwise
313 * @param selector The selector to match.
314 * @return The previously selected route if it matched the selector, otherwise the
322 public RouteInfo updateSelectedRoute(@NonNull MediaRouteSelector selector) { argument
323 if (selector == null) {
324 throw new IllegalArgumentException("selector must not be null");
329 Log.d(TAG, "updateSelectedRoute: " + selector);
332 if (!route.isDefault() && !route.matchesSelector(selector)) {
357 * Returns true if there is a route that matches the specified selector
376 isRouteAvailable(@onNull MediaRouteSelector selector, int flags) argument
398 addCallback(MediaRouteSelector selector, Callback callback) argument
495 addCallback(@onNull MediaRouteSelector selector, @NonNull Callback callback, @CallbackFlags int flags) argument
886 matchesSelector(@onNull MediaRouteSelector selector) argument
1649 isRouteAvailable(MediaRouteSelector selector, int flags) argument
[all...]
H A DSystemMediaRouteProvider.java277 final MediaRouteSelector selector = request.getSelector();
278 final List<String> categories = selector.getControlCategories();
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DListViewCompat.java106 Drawable selector = getSelector();
107 if (selector != null && shouldShowSelectorCompat()) {
108 selector.setState(getDrawableState());
122 final Drawable selector = getSelector();
123 selector.setBounds(mSelectorRect);
124 selector.draw(canvas);
171 Drawable selector = getSelector();
172 if (selector != null && position != INVALID_POSITION) {
173 DrawableCompat.setHotspot(selector, x, y);
178 // If we're changing position, update the visibility since the selector
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DIntentForwarderActivity.java89 Intent selector = newIntent.getSelector();
90 if (selector == null) {
91 selector = newIntent;
94 canForward = ipm.canForwardTo(selector, resolvedType, callingUserId,
/frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/assertion/
H A DViewAssertions.java100 * selector match the specified matcher.
106 final Matcher<View> selector, final Matcher<View> matcher) {
116 return selector.matches(input);
105 selectedDescendantsMatch( final Matcher<View> selector, final Matcher<View> matcher) argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackControlsRowPresenter.java120 ControlButtonPresenterSelector selector =
122 return primary ? selector.getPrimaryPresenter() :
123 selector.getSecondaryPresenter();
H A DListRowPresenter.java257 public final void setHoverCardPresenterSelector(PresenterSelector selector) { argument
258 mHoverCardPresenterSelector = selector;
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewContentsClientAdapter.java189 Intent selector = intent.getSelector();
190 if (selector != null) {
191 selector.addCategory(Intent.CATEGORY_BROWSABLE);
192 selector.setComponent(null);
/frameworks/base/core/java/android/content/
H A DIntent.java2936 * Intent with this category in the selector.</p>
2948 * Intent with this category in the selector.</p>
2960 * Intent with this category in the selector.</p>
2972 * Intent with this category in the selector.</p>
2984 * Intent with this category in the selector.</p>
2997 * Intent with this category in the selector.</p>
3009 * Intent with this category in the selector.</p>
3021 * Intent with this category in the selector.</p>
3034 * Intent with this category in the selector.</p>
4059 * specifying a specific activity to run but giving a selector t
5587 setSelector(Intent selector) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsListView.java297 * Indicates whether the list selector should be drawn on top of the children or behind
302 * The drawable used to draw the selector
307 * The current position of the selector in the list.
312 * Defines the selector's location and dimension at drawing time
2257 * List padding is the maximum of the normal view's padding and the padding of the selector.
2269 * List padding is the maximum of the normal view's padding and the padding of the selector.
2281 * List padding is the maximum of the normal view's padding and the padding of the selector.
2293 * List padding is the maximum of the normal view's padding and the padding of the selector.
2509 * Positions the selector in a way that mimics touch.
2520 * Positions the selector i
[all...]
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;
1530 /** Whether to force drawing of the pressed state selector. */
1614 * Starts an alpha animation on the selector. When the animation ends,
1652 // the children. This will ensure the selector actually gets drawn.
1661 // which will also update the selector state.
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java364 * Sets a drawable to use as the list item selector.
366 * @param selector List selector drawable to use in the popup.
368 public void setListSelector(Drawable selector) { argument
369 mDropDownListHighlight = selector;
1520 /** Whether to force drawing of the pressed state selector. */
1603 * Starts an alpha animation on the selector. When the animation ends,
1627 // the children. This will ensure the selector actually gets drawn.
1635 // This needs some explanation. We need to disable the selector for this next call
1637 // will draw the selector an
[all...]

Completed in 387 milliseconds