Lines Matching defs:selector

2782      * Intent with this category in the selector.</p>
2794 * Intent with this category in the selector.</p>
2806 * Intent with this category in the selector.</p>
2818 * Intent with this category in the selector.</p>
2830 * Intent with this category in the selector.</p>
2843 * Intent with this category in the selector.</p>
2855 * Intent with this category in the selector.</p>
2867 * Intent with this category in the selector.</p>
2880 * Intent with this category in the selector.</p>
3725 * specifying a specific activity to run but giving a selector to find
3737 * @param selectorAction The action name of the Intent's selector.
3739 * selector.
3749 Intent selector = new Intent();
3750 selector.setAction(selectorAction);
3751 selector.addCategory(selectorCategory);
3752 intent.setSelector(selector);
3885 // selector
3914 // The Intent had a selector; fix it up.
4254 * Return the specific selector associated with this Intent. If there is
5185 * Set a selector for this Intent. This is a modification to the kinds of
5186 * things the Intent will match. If the selector is set, it will be used
5200 * yet specified) and set a selector with {@link #ACTION_MAIN} and
5203 * <p>Setting a selector does not impact the behavior of
5205 * desired behavior of a selector -- it does not impact the base meaning
5209 * <p>You can not use both a selector and {@link #setPackage(String)} on
5212 * @param selector The desired selector Intent; set to null to not use
5213 * a special selector.
5215 public void setSelector(Intent selector) {
5216 if (selector == this) {
5218 "Intent being set as a selector of itself");
5220 if (selector != null && mPackage != null) {
5222 "Can't set selector when package name is already set");
5224 mSelector = selector;
6087 "Can't set package name when selector is already set");
6230 * Use with {@link #fillIn} to allow the current selector to be
6256 * <li> selector, as set by {@link #setSelector(Intent)}.
6269 * is explicitly specified. The selector will only be copied if