Searched defs:that (Results 1 - 21 of 21) sorted by relevance

/frameworks/base/core/java/com/android/internal/statusbar/
H A DNotificationVisibility.java70 public boolean equals(Object that) { argument
72 if (that instanceof NotificationVisibility) {
73 NotificationVisibility thatViz = (NotificationVisibility) that;
145 * Parcelable.Creator that instantiates NotificationVisibility objects
H A DStatusBarIconList.java74 * Parcelable.Creator that instantiates StatusBarIconList objects
139 public void copyFrom(StatusBarIconList that) { argument
140 if (that.mSlots == null) {
144 final int N = that.mSlots.length;
148 this.mSlots[i] = that.mSlots[i];
149 this.mIcons[i] = that.mIcons[i] != null ? that.mIcons[i].clone() : null;
/frameworks/base/core/java/android/content/
H A DComponentName.java30 * {@link android.content.ContentProvider}) that is available. Two
33 * name inside of that package.
51 * @param cls the name of the class inside of <var>pkg</var> that implements
82 * @param cls the name of the class inside of <var>pkg</var> that implements
93 * @param pkg The name of the package that the component exists in. Can
95 * @param cls The name of the class inside of <var>pkg</var> that
110 * @param cls The name of the class inside of <var>pkg</var> that
192 * Return a String that unambiguously describes both the package and
243 * Recover a ComponentName from a String that was previously created with
252 * @param str The String that wa
304 compareTo(ComponentName that) argument
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkRequest.java29 * The {@link NetworkCapabilities} that define this request.
64 public NetworkRequest(NetworkRequest that) { argument
65 networkCapabilities = new NetworkCapabilities(that.networkCapabilities);
66 requestId = that.requestId;
67 this.legacyType = that.legacyType;
98 * the requested network's required capabilities. Note that when searching
125 * removing even the capabilities that are set by default when the object is constructed.
182 * The interpretation of this {@code String} is bearer specific and bearers that use
200 * Note that when used to register a network callback, this specifies the minimum acceptable
244 NetworkRequest that
[all...]
H A DNetwork.java92 public Network(Network that) { argument
93 this.netId = that.netId;
97 * Operates the same as {@code InetAddress.getAllByName} except that host
109 * Operates the same as {@code InetAddress.getByName} except that host
123 * A {@code SocketFactory} that produces {@code Socket}'s bound to this network.
187 * this factory will have its traffic sent over this {@code Network}. Note that if this
238 * Opens the specified {@link URL} on this {@code Network}, such that all traffic will be sent
263 * Opens the specified {@link URL} on this {@code Network}, such that all traffic will be sent
278 // TODO: HttpHandler creates OkUrlFactory instances that share the default ResponseCache.
305 // Query a property of the underlying socket to ensure that th
[all...]
H A DNetworkCapabilities.java28 * Note that this replaces the old {@link ConnectivityManager#TYPE_MOBILE} method
32 * needs an unmetered network for a bulk transfer it can specify that rather than assuming
56 * Completely clears the contents of this object, removing even the capabilities that are set
69 * by any Network that matches all of them.
74 * Indicates this is a network that has the ability to reach the
80 * Indicates this is a network that has the ability to reach the carrier's
86 * Indicates this is a network that has the ability to reach the carrier's
92 * Indicates this is a network that has the ability to reach the carrier's
98 * Indicates this is a network that has the ability to reach the carrier's
104 * Indicates this is a network that ha
337 equalsNetCapabilitiesImmutable(NetworkCapabilities that) argument
[all...]
/frameworks/base/tools/aapt/
H A DSourcePos.cpp25 ErrorPos(const ErrorPos& that);
39 ErrorPos::ErrorPos(const ErrorPos& that) argument
40 :file(that.file),
41 line(that.line),
42 error(that.error),
43 level(that.level)
99 SourcePos::SourcePos(const SourcePos& that) argument
100 : file(that.file), line(that.line)
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
H A DJavaClass.java193 public boolean isAssignableFrom(ModelClass that) { argument
194 Class thatClass = ((JavaClass) that).mClass;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DPasspointMatchInfo.java185 public int compareTo(PasspointMatchInfo that) { argument
186 return getScore() - that.getScore();
223 PasspointMatchInfo that = (PasspointMatchInfo)thatObject;
225 return getNetworkDetail().equals(that.getNetworkDetail()) &&
226 getHomeSP().equals(that.getHomeSP()) &&
227 getPasspointMatch().equals(that.getPasspointMatch());
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DModelClass.java206 * @return The unboxed type of the class that this ModelClass represents or this if it isn't a
215 * @return The boxed type of the class that this ModelClass represents or this if it isn't a
221 * Returns whether or not the type associated with <code>that</code> can be assigned to
222 * the type associated with this ModelClass. If this and that only require boxing or unboxing
225 * @param that the ModelClass to compare.
226 * @return true if <code>that</code> requires only boxing or if <code>that</code> is an
229 public abstract boolean isAssignableFrom(ModelClass that); argument
237 * @param args The types that the method should accept.
260 * @param numParameters The number of parameters that th
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
H A DAnnotationClass.java282 public boolean isAssignableFrom(ModelClass that) { argument
283 if (that == null) {
286 AnnotationClass thatAnnotationClass = (AnnotationClass) that;
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipWakeupTimer.java34 * Timer that can schedule events to occur even when the device is in sleep.
316 // Sort the events by mMaxPeriod so that the first event can be used to
328 public boolean equals(Object that) { argument
329 return (this == that);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCall.java59 // ImsPhoneCall to for fg, bg, etc calls. This is used as a convenience for logging so that it
278 merge(ImsPhoneCall that, State state) { argument
279 // This call is the conference host and the "that" call is the one being merged in.
294 Rlog.d(LOG_TAG, "merge(" + mCallContext + "): " + that + "state = "
302 * Marked as {@code VisibleForTesting} so that the
363 void switchWith(ImsPhoneCall that) { argument
365 Rlog.v(LOG_TAG, "switchWith : switchCall = " + this + " withCall = " + that);
370 this.takeOver(that);
371 that.takeOver(tmp);
376 private void takeOver(ImsPhoneCall that) { argument
[all...]
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java63 * This property sets the animation matrix properties that are not translations.
282 // clear the transform properties so that we can use the animation matrix instead
451 public boolean equals(Object that) { argument
452 if (!(that instanceof Transforms)) {
455 Transforms thatTransform = (Transforms) that;
/frameworks/base/core/java/android/text/format/
H A DTime.java34 * <p>This class has a number of issues and it is recommended that
45 * <li>Calling {@link #switchTimezone(String)} on a date that cannot exist, such as a wall time
46 * that was skipped due to a DST transition, will result in a date in 1969 (i.e. -1, or 1 second
64 * The Julian day of the epoch, that is, January 1, 1970 on the Gregorian
163 // An object that is reused for date calculations.
203 // Set the daylight-saving indicator to the unknown value -1 so that
207 // A reusable object that performs the date/time calculations.
255 * the other fields. Requires that it be normalized for MONTH_DAY and
325 * either {@code Time} have been set to a local time that contradicts the
374 * format that doe
784 set(Time that) argument
851 before(Time that) argument
867 after(Time that) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java59 // A call that is ringing or (call) waiting
82 SipPhone that = (SipPhone) o;
83 return mProfile.getUriString().equals(that.mProfile.getUriString());
108 // FIXME: is it true that we cannot take any incoming call if
138 // that happens.
245 public void conference(Call that) throws CallStateException { argument
247 if (!(that instanceof SipCall)) {
249 + ", cannot merge with " + that.getClass());
251 mForegroundCall.merge((SipCall) that);
442 void switchWith(SipCall that) { argument
452 takeOver(SipCall that) argument
610 merge(SipCall that) argument
[all...]
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java37 * This class describes all device configuration information that can
66 * resource qualifier. 0 if undefined. Note that the actual MNC may be 0; in order to check
91 /** Constant for {@link #screenLayout}: bits that encode the size. */
94 * value indicating that no size has been set. */
129 /** Constant for {@link #screenLayout}: bits that encode the aspect ratio. */
132 * value indicating that no size has been set. */
135 * value that corresponds to the
140 * value that corresponds to the
145 /** Constant for {@link #screenLayout}: bits that encode the layout direction. */
150 * value indicating that n
1227 compareTo(Configuration that) argument
1278 equals(Configuration that) argument
1284 equals(Object that) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DGridLayout.java53 * A layout that places its children in a rectangular <em>grid</em>.
55 * The grid is composed of a set of infinitely thin lines that separate the
58 * has {@code N + 1} grid indices that run from {@code 0}
69 * Each spec defines the set of rows or columns that are to be
73 * In this case however, there is no guarantee that children will not themselves
106 * In the event that no weights are specified, the previous conventions are respected and
114 * is taken as <em>flexible</em> in that direction. If no weight or alignment was set,
120 * within it are flexible. Row and column groups that sit either side of a common boundary
125 * weight or a gravity. To prevent a column from stretching, ensure that one of the components
129 * GridLayout's algorithms favour rows and columns that ar
2459 equals(Object that) argument
2572 equals(Object that) argument
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java52 * A layout that places its children in a rectangular <em>grid</em>.
54 * The grid is composed of a set of infinitely thin lines that separate the
57 * has {@code N + 1} grid indices that run from {@code 0}
68 * Each spec defines the set of rows or columns that are to be
72 * In this case however, there is no guarantee that children will not themselves
105 * In the event that no weights are specified, columns and rows are taken as
112 * is taken as <em>flexible</em> in that direction. If no weight or alignment was set,
118 * within it are flexible. Row and column groups that sit either side of a common boundary
123 * weight or a gravity. To prevent a column from stretching, ensure that one of the components
127 * GridLayout's algorithms favour rows and columns that ar
2353 equals(Object that) argument
2466 equals(Object that) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java67 * A class that represents how a persistent notification is to be presented to
85 * An activity that provides a user interface for adjusting notification preferences for its
86 * containing application. Optional but recommended for apps that post
103 * A notification that is noisy is more likely to be presented as a heads-up notification.
117 * A notification that vibrates is more likely to be presented as a heads-up notification.
148 * Choose a timestamp that will be most relevant to the user. For most finite events, this
149 * corresponds to the time the event happened (or will happen, in the case of events that have
159 * <li>Notification of an upcoming meeting should be stamped with the time the meeting will begin (that is, in the future).</li>
186 * The number of events that this notification represents. For example, in a new mail
203 * that yo
1501 cloneInto(Notification that, boolean heavy) argument
[all...]
/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 690 milliseconds