Searched refs:selector (Results 1 - 25 of 25) 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.java49 * to select by specifying a {@link MediaRouteSelector selector} with the
53 * match the {@link #getRouteSelector() selector}, the button will appear in
57 * If no non-default routes match the selector and it is not possible for an active
61 * When a non-default route is selected that matches the selector, the button will
144 * Gets the media route selector for filtering the routes that the user can
147 * @return The selector, never null.
155 * Sets the media route selector for filtering the routes that the user can
158 * @param selector The selector, must not be null.
160 public void setRouteSelector(MediaRouteSelector selector) { argument
[all...]
/frameworks/base/cmds/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.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...]
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.java111 Drawable selector = getSelector();
112 if (selector != null && shouldShowSelectorCompat()) {
113 selector.setState(getDrawableState());
127 final Drawable selector = getSelector();
128 if (selector != null) {
129 selector.setBounds(mSelectorRect);
130 selector.draw(canvas);
178 Drawable selector = getSelector();
179 if (selector != null && position != INVALID_POSITION) {
180 DrawableCompat.setHotspot(selector,
[all...]
/frameworks/base/tools/split-select/
H A DSplitSelector_test.cpp48 SplitSelector selector(splits);
50 bestSplits.merge(selector.getBestSplits(targetSplit));
56 KeyedVector<SplitDescription, sp<Rule> > rules = selector.getRules();
H A DMain.cpp67 const SplitSelector selector(splits);
68 return selector.getBestSplits(target);
77 const SplitSelector selector(allSplits);
78 KeyedVector<SplitDescription, sp<Rule> > rules(selector.getRules());
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackControlsRowPresenter.java127 ControlButtonPresenterSelector selector =
129 return primary ? selector.getPrimaryPresenter() :
130 selector.getSecondaryPresenter();
H A DListRowPresenter.java337 public final void setHoverCardPresenterSelector(PresenterSelector selector) { argument
338 mHoverCardPresenterSelector = selector;
/frameworks/base/core/java/android/widget/
H A DAbsListView.java302 * Indicates whether the list selector should be drawn on top of the children or behind
307 * The drawable used to draw the selector
312 * The current position of the selector in the list.
317 * Defines the selector's location and dimension at drawing time
585 * The cached drawable state for the selector. Accounts for child enabled
822 final Drawable selector = a.getDrawable(R.styleable.AbsListView_listSelector);
823 if (selector != null) {
824 setSelector(selector);
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
[all...]
H A DListPopupWindow.java363 * Sets a drawable to use as the list item selector.
365 * @param selector List selector drawable to use in the popup.
367 public void setListSelector(Drawable selector) { argument
368 mDropDownListHighlight = selector;
1553 /** Whether to force drawing of the pressed state selector. */
1637 * Starts an alpha animation on the selector. When the animation ends,
1711 // which will also update the selector state.
/frameworks/base/core/java/android/content/
H A DIntent.java3199 * Intent with this category in the selector.</p>
3211 * Intent with this category in the selector.</p>
3223 * Intent with this category in the selector.</p>
3235 * Intent with this category in the selector.</p>
3247 * Intent with this category in the selector.</p>
3260 * Intent with this category in the selector.</p>
3272 * Intent with this category in the selector.</p>
3284 * Intent with this category in the selector.</p>
3297 * Intent with this category in the selector.</p>
4512 * specifying a specific activity to run but giving a selector t
6134 setSelector(Intent selector) argument
[all...]
/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;
1535 /** Whether to force drawing of the pressed state selector. */
1618 * Starts an alpha animation on the selector. When the animation ends,
1642 // the children. This will ensure the selector actually gets drawn.
1650 // This needs some explanation. We need to disable the selector for this next call
1652 // will draw the selector an
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DLinearLayoutManagerTest.java1219 for (SelectTargetChildren selector : selectors) {
1221 prepareForDropTest(config, selector);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 583 milliseconds