Lines Matching refs:other

151  *         at the other information in the intent (the action, data/type, and
155 * all of the other Intent attributes become optional.</p>
163 * <p>Here are some examples of other operations you can specify as intents
208 * class to be run. Often these will not include any other information,
333 * MAIN action is a main entry point (not requiring any other information in
473 * also supports two other standard categories: ALTERNATIVE and
677 * Used to indicate that some piece of data should be attached to some other
769 * For applications which install other applications (such as app stores), it is recommended
1128 * content: URIs and other advanced features of {@link ClipData}. If
1166 * content: URIs and other advanced features of {@link ClipData}. If
1360 * or other appropriate UI for placing a call.
2226 * never, in response to this, change the wallpaper or other attributes of
2228 * all kinds of loops, especially if other apps are doing similar things,
2272 * charging state, level, and other information about the battery.
2574 * then cell radio and possibly other radios such as bluetooth or WiFi may have also been
2675 * other calls cannot be modified to call emergency numbers using this
2730 * {@link #ACTION_IDLE_MAINTENANCE_END} will be sent. In other words, you
2762 * In other words, you should not do the maintenance work in
2895 * other user state broadcasts since those are foreground broadcasts so can
2913 * other user state broadcasts since those are foreground broadcasts so can
3306 * displayed while also allowing other applications to provide their own
3390 * This activity may be exercised by the monkey or other automated test tools.
3678 * from your own package or other apps from your organization if the idea of sending to those
3679 * targets would be redundant with other app functionality. Filtered components will not
3689 * <p>Targets provided in this way will be presented inline with all other targets provided
3690 * by services from other apps. They will be prioritized before other service targets, but
3807 * the chooser, switches to another task or any number of other reasons. Apps should not
4210 * all URIs as well as recursive traversals through data or other ClipData
4219 * all URIs as well as recursive traversals through data or other ClipData
4372 * all of the other activities on top of it will be closed and this Intent
4385 * the same intent, then it will be finished and re-created; for all other
4651 * with {@link #parseUri}, any other scheme will result in a generic
4817 * Create an intent with a given action. All other fields (data, type,
4852 * Create an intent for a specific component. All other fields (action, data,
4993 * category, and other intent fields, if it was returned by
6584 * yourself) and will always be non-null; in all other cases it will be
7012 * <p>The ClipData in an intent is not used for Intent matching or other
7894 * appropriate class to use based on the other fields (action, data,
7896 * specified class will always be used regardless of the other fields. You
8055 * Copy the contents of <var>other</var> in to this object, but only
8093 * @param other Another Intent whose values are to be used to fill in
8104 public int fillIn(Intent other, @FillInFlags int flags) {
8107 if (other.mAction != null
8109 mAction = other.mAction;
8112 if ((other.mData != null || other.mType != null)
8115 mData = other.mData;
8116 mType = other.mType;
8120 if (other.mCategories != null
8122 if (other.mCategories != null) {
8123 mCategories = new ArraySet<String>(other.mCategories);
8127 if (other.mPackage != null
8131 mPackage = other.mPackage;
8137 if (other.mSelector != null && (flags&FILL_IN_SELECTOR) != 0) {
8139 mSelector = new Intent(other.mSelector);
8144 if (other.mClipData != null
8146 mClipData = other.mClipData;
8153 if (other.mComponent != null && (flags&FILL_IN_COMPONENT) != 0) {
8154 mComponent = other.mComponent;
8157 mFlags |= other.mFlags;
8158 if (other.mSourceBounds != null
8160 mSourceBounds = new Rect(other.mSourceBounds);
8164 if (other.mExtras != null) {
8165 mExtras = new Bundle(other.mExtras);
8168 } else if (other.mExtras != null) {
8170 Bundle newb = new Bundle(other.mExtras);
8184 && other.mContentUserHint != UserHandle.USER_CURRENT) {
8185 mContentUserHint = other.mContentUserHint;
8219 Intent other = ((FilterComparison)obj).mIntent;
8220 return mIntent.filterEquals(other);
8237 * @param other The other Intent to compare against.
8242 public boolean filterEquals(Intent other) {
8243 if (other == null) {
8246 if (!Objects.equals(this.mAction, other.mAction)) return false;
8247 if (!Objects.equals(this.mData, other.mData)) return false;
8248 if (!Objects.equals(this.mType, other.mType)) return false;
8249 if (!Objects.equals(this.mPackage, other.mPackage)) return false;
8250 if (!Objects.equals(this.mComponent, other.mComponent)) return false;
8251 if (!Objects.equals(this.mCategories, other.mCategories)) return false;