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

12

/frameworks/base/core/java/com/android/internal/app/procstats/
H A DPssTable.java43 public void mergeStats(PssTable that) { argument
44 final int N = that.getKeyCount();
46 final int key = that.getKeyAt(i);
48 mergeStats(state, (int)that.getValue(key, PSS_SAMPLE_COUNT),
49 that.getValue(key, PSS_MINIMUM),
50 that.getValue(key, PSS_AVERAGE),
51 that.getValue(key, PSS_MAXIMUM),
52 that.getValue(key, PSS_USS_MINIMUM),
53 that.getValue(key, PSS_USS_AVERAGE),
54 that
[all...]
H A DSysMemUsageTable.java59 * @param that SysMemUsageTable to copy from.
61 public void mergeStats(SysMemUsageTable that) { argument
62 final int N = that.getKeyCount();
64 final int key = that.getKeyAt(i);
67 final long[] addData = that.getArrayForKey(key);
/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
/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
204 * Note that when used to register a network callback, this specifies the minimum acceptable
248 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
350 equalsNetCapabilitiesImmutable(NetworkCapabilities that) argument
[all...]
/frameworks/base/core/java/android/util/
H A DSparseBooleanArray.java32 * <p>Note that this container keeps its mappings in an array data structure,
35 * that may contain large numbers of items. It is generally slower than a traditional
55 * Creates a new SparseBooleanArray containing no mappings that will not
147 * Returns the number of key-value mappings that this SparseBooleanArray
156 * the key from the <code>index</code>th key-value mapping that this
170 * the value from the <code>index</code>th key-value mapping that this
206 * Beware that this is a linear search, unlike lookups by key,
207 * and that multiple keys can map to the same value and this will
250 public boolean equals(Object that) { argument
251 if (this == that) {
[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/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.java210 * @return The unboxed type of the class that this ModelClass represents or this if it isn't a
219 * @return The boxed type of the class that this ModelClass represents or this if it isn't a
225 * Returns whether or not the type associated with <code>that</code> can be assigned to
226 * the type associated with this ModelClass. If this and that only require boxing or unboxing
229 * @param that the ModelClass to compare.
230 * @return true if <code>that</code> requires only boxing or if <code>that</code> is an
233 public abstract boolean isAssignableFrom(ModelClass that); argument
241 * @param args The types that the method should accept.
264 * @param numParameters The number of parameters that th
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
H A DAnnotationClass.java288 public boolean isAssignableFrom(ModelClass that) { argument
289 if (that == null) {
292 AnnotationClass thatAnnotationClass = (AnnotationClass) that;
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
H A DJavaClass.java198 public boolean isAssignableFrom(ModelClass that) { argument
199 Class thatClass = ((JavaClass) that).mClass;
/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
254 merge(ImsPhoneCall that, State state) { argument
255 // This call is the conference host and the "that" call is the one being merged in.
270 Rlog.d(LOG_TAG, "merge(" + mCallContext + "): " + that + "state = "
278 * Marked as {@code VisibleForTesting} so that the
338 public void switchWith(ImsPhoneCall that) { argument
340 Rlog.v(LOG_TAG, "switchWith : switchCall = " + this + " withCall = " + that);
345 this.takeOver(that);
346 that.takeOver(tmp);
351 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.java60 // A call that is ringing or (call) waiting
85 SipPhone that = (SipPhone) o;
86 return mProfile.getUriString().equals(that.mProfile.getUriString());
111 // FIXME: is it true that we cannot take any incoming call if
141 // that happens.
255 public void conference(Call that) throws CallStateException { argument
257 if (!(that instanceof SipCall)) {
259 + ", cannot merge with " + that.getClass());
261 mForegroundCall.merge((SipCall) that);
461 void switchWith(SipCall that) { argument
471 takeOver(SipCall that) argument
629 merge(SipCall that) argument
[all...]
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java44 * This class describes all device configuration information that can
73 * resource qualifier. 0 if undefined. Note that the actual MNC may be 0; in order to check
104 /** Constant for {@link #screenLayout}: bits that encode the size. */
107 * value indicating that no size has been set. */
142 /** Constant for {@link #screenLayout}: bits that encode the aspect ratio. */
145 * value indicating that no size has been set. */
148 * value that corresponds to the
153 * value that corresponds to the
158 /** Constant for {@link #screenLayout}: bits that encode the layout direction. */
163 * value indicating that n
1341 compareTo(Configuration that) argument
1407 equals(Configuration that) argument
1413 equals(Object that) argument
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DMultiSelectManager.java192 * Adds {@code callback} such that it will be notified when {@code MultiSelectManager}
206 * Returns a Selection object that provides a live view
210 * of the selection that will not reflect future changes
238 * Sets the selected state of the specified items. Note that the callback will NOT
274 * notified about state changes so that they can update their appearance.
437 * Try to set selection state for all elements in range. Not that callbacks can cancel selection
662 // selection. Tracking both separately is necessary to ensure that saved selections do not
725 * Sets the provisional selection, which is a temporary selection that can be saved,
735 // Mark each item that used to be in the selection but is unsaved and not in the new
743 // Mark each item that use
856 equals(Object that) argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationUsageStats.java734 void update(ImportanceHistogram that) { argument
736 mCount[i] = that.mCount[i];
761 * Tracks usage of an individual notification that is currently active.
/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
2466 equals(Object that) argument
2579 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
2360 equals(Object that) argument
2473 equals(Object that) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java82 * A class that represents how a persistent notification is to be presented to
100 * An activity that provides a user interface for adjusting notification preferences for its
101 * containing application. Optional but recommended for apps that post
118 * A notification that is noisy is more likely to be presented as a heads-up notification.
132 * A notification that vibrates is more likely to be presented as a heads-up notification.
159 * Maximum entries of reply text that are accepted by Builder and friends.
168 * Choose a timestamp that will be most relevant to the user. For most finite events, this
169 * corresponds to the time the event happened (or will happen, in the case of events that have
179 * <li>Notification of an upcoming meeting should be stamped with the time the meeting will begin (that is, in the future).</li>
214 * The number of events that thi
1666 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 571 milliseconds

12