Lines Matching defs:other

160  *         at the other information in the intent (the action, data/type, and
164 * all of the other Intent attributes become optional.</p>
172 * <p>Here are some examples of other operations you can specify as intents
217 * class to be run. Often these will not include any other information,
342 * MAIN action is a main entry point (not requiring any other information in
482 * also supports two other standard categories: ALTERNATIVE and
703 * Used to indicate that some piece of data should be attached to some other
805 * For applications which install other applications (such as app stores), it is recommended
1166 * content: URIs and other advanced features of {@link ClipData}. If
1210 * content: URIs and other advanced features of {@link ClipData}. If
1412 * or other appropriate UI for placing a call.
2460 * never, in response to this, change the wallpaper or other attributes of
2462 * all kinds of loops, especially if other apps are doing similar things,
2526 * charging state, level, and other information about the battery.
2878 * then cell radio and possibly other radios such as bluetooth or WiFi may have also been
2979 * other calls cannot be modified to call emergency numbers using this
3034 * {@link #ACTION_IDLE_MAINTENANCE_END} will be sent. In other words, you
3066 * In other words, you should not do the maintenance work in
3200 * other user state broadcasts since those are foreground broadcasts so can
3218 * other user state broadcasts since those are foreground broadcasts so can
4062 * displayed while also allowing other applications to provide their own
4135 * from there the user can start other apps. Often components with lower/higher
4164 * This activity may be exercised by the monkey or other automated test tools.
4474 * from your own package or other apps from your organization if the idea of sending to those
4475 * targets would be redundant with other app functionality. Filtered components will not
4485 * <p>Targets provided in this way will be presented inline with all other targets provided
4486 * by services from other apps. They will be prioritized before other service targets, but
4774 * the chooser, switches to another task or any number of other reasons. Apps should not
5138 * such as opening in other apps, sharing, opening, editing, printing, deleting,
5343 * all URIs as well as recursive traversals through data or other ClipData
5352 * all URIs as well as recursive traversals through data or other ClipData
5513 * all of the other activities on top of it will be closed and this Intent
5526 * the same intent, then it will be finished and re-created; for all other
5842 * with {@link #parseUri}, any other scheme will result in a generic
6031 * Create an intent with a given action. All other fields (data, type,
6066 * Create an intent for a specific component. All other fields (action, data,
6207 * category, and other intent fields, if it was returned by
7846 * yourself) and will always be non-null; in all other cases it will be
8276 * <p>The ClipData in an intent is not used for Intent matching or other
9144 * appropriate class to use based on the other fields (action, data,
9146 * specified class will always be used regardless of the other fields. You
9305 * Copy the contents of <var>other</var> in to this object, but only
9343 * @param other Another Intent whose values are to be used to fill in
9354 public int fillIn(@NonNull Intent other, @FillInFlags int flags) {
9357 if (other.mAction != null
9359 mAction = other.mAction;
9362 if ((other.mData != null || other.mType != null)
9365 mData = other.mData;
9366 mType = other.mType;
9370 if (other.mCategories != null
9372 if (other.mCategories != null) {
9373 mCategories = new ArraySet<String>(other.mCategories);
9377 if (other.mPackage != null
9381 mPackage = other.mPackage;
9387 if (other.mSelector != null && (flags&FILL_IN_SELECTOR) != 0) {
9389 mSelector = new Intent(other.mSelector);
9394 if (other.mClipData != null
9396 mClipData = other.mClipData;
9403 if (other.mComponent != null && (flags&FILL_IN_COMPONENT) != 0) {
9404 mComponent = other.mComponent;
9407 mFlags |= other.mFlags;
9408 if (other.mSourceBounds != null
9410 mSourceBounds = new Rect(other.mSourceBounds);
9414 if (other.mExtras != null) {
9415 mExtras = new Bundle(other.mExtras);
9418 } else if (other.mExtras != null) {
9420 Bundle newb = new Bundle(other.mExtras);
9434 && other.mContentUserHint != UserHandle.USER_CURRENT) {
9435 mContentUserHint = other.mContentUserHint;
9469 Intent other = ((FilterComparison)obj).mIntent;
9470 return mIntent.filterEquals(other);
9487 * @param other The other Intent to compare against.
9492 public boolean filterEquals(Intent other) {
9493 if (other == null) {
9496 if (!Objects.equals(this.mAction, other.mAction)) return false;
9497 if (!Objects.equals(this.mData, other.mData)) return false;
9498 if (!Objects.equals(this.mType, other.mType)) return false;
9499 if (!Objects.equals(this.mPackage, other.mPackage)) return false;
9500 if (!Objects.equals(this.mComponent, other.mComponent)) return false;
9501 if (!Objects.equals(this.mCategories, other.mCategories)) return false;