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

/frameworks/base/core/java/android/content/
H A DComponentName.java29 * {@link android.content.ContentProvider}) that is available. Two
32 * name inside of that package.
42 * @param pkg The name of the package that the component exists in. Can
44 * @param cls The name of the class inside of <var>pkg</var> that
59 * @param cls The name of the class inside of <var>pkg</var> that
141 * Return a String that unambiguously describes both the package and
192 * Recover a ComponentName from a String that was previously created with
201 * @param str The String that was returned by flattenToString().
203 * names that were encoded in <var>str</var>
253 public int compareTo(ComponentName that) { argument
[all...]
/frameworks/base/core/java/com/android/internal/statusbar/
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/tools/aapt/
H A DSourcePos.cpp19 ErrorPos(const ErrorPos& that);
36 ErrorPos::ErrorPos(const ErrorPos& that) argument
37 :file(that.file),
38 line(that.line),
39 error(that.error),
40 fatal(that.fatal)
105 SourcePos::SourcePos(const SourcePos& that) argument
106 : file(that.file), line(that.line)
/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/base/core/java/android/text/format/
H A DTime.java41 * The Julian day of the epoch, that is, January 1, 1970 on the Gregorian
172 // Set the daylight-saving indicator to the unknown value -1 so that
225 * the other fields. Requires that it be normalized for MONTH_DAY and
379 * format that does not include the "time" field. For example, all of the
431 * (that is, strings that contain no time or time offset). For example,
474 * Returns the timezone string that is currently set for the device.
505 * ambiguous because it falls in the hour that is repeated when switching
510 * assuming that DST changes at 2am on Sunday, Nov 4, 2007.
530 * to read back the same milliseconds that yo
555 set(Time that) argument
618 before(Time that) argument
630 after(Time that) argument
[all...]
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java28 * This class describes all device configuration information that can
57 * resource qualifier. 0 if undefined. Note that the actual MNC may be 0; in order to check
82 /** Constant for {@link #screenLayout}: bits that encode the size. */
85 * value indicating that no size has been set. */
120 /** Constant for {@link #screenLayout}: bits that encode the aspect ratio. */
123 * value indicating that no size has been set. */
126 * value that corresponds to the
131 * value that corresponds to the
136 /** Constant for {@link #screenLayout}: bits that encode the layout direction. */
141 * value indicating that n
1171 compareTo(Configuration that) argument
1222 equals(Configuration that) argument
1228 equals(Object that) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java57 // A call that is ringing or (call) waiting
80 SipPhone that = (SipPhone) o;
81 return mProfile.getUriString().equals(that.mProfile.getUriString());
106 // FIXME: is it true that we cannot take any incoming call if
136 // that happens.
243 public void conference(Call that) throws CallStateException { argument
245 if (!(that instanceof SipCall)) {
247 + ", cannot merge with " + that.getClass());
249 mForegroundCall.merge((SipCall) that);
439 void switchWith(SipCall that) { argument
449 takeOver(SipCall that) argument
606 merge(SipCall that) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java44 * A class that represents how a persistent notification is to be presented to
101 * Choose a timestamp that will be most relevant to the user. For most finite events, this
102 * corresponds to the time the event happened (or will happen, in the case of events that have
112 * <li>Notification of an upcoming meeting should be stamped with the time the meeting will begin (that is, in the future).</li>
136 * The number of events that this notification represents. For example, in a new mail
153 * that you take care of task management as described in the
193 * The view that will represent this notification in the expanded status bar.
205 * The bitmap that may escape the bounds of the panel and bar.
219 * Use this constant as the value for audioStreamType to request that
280 * Bit to be bitwise-ored into the {@link #flags} field that shoul
776 cloneInto(Notification that, boolean heavy) argument
[all...]
/frameworks/base/core/java/android/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
111 * is taken as <em>flexible</em> in that direction. If no alignment was set,
117 * within it are flexible. Row and column groups that sit either side of a common boundary
122 * gravity. To prevent a column from stretching, ensure that one of the components
126 * GridLayout's algorithms favour rows and columns that are closer to its <em>right</em>
133 * the policy of ignoring views that ar
2341 equals(Object that) argument
2437 equals(Object that) argument
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/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
112 * is taken as <em>flexible</em> in that direction. If no alignment was set,
118 * within it are flexible. Row and column groups that sit either side of a common boundary
123 * gravity. To prevent a column from stretching, ensure that one of the components
127 * GridLayout's algorithms favour rows and columns that are closer to its <em>right</em>
134 * the policy of ignoring views that ar
1857 LayoutParams(LayoutParams that) argument
2224 equals(Object that) argument
2320 equals(Object that) argument
[all...]

Completed in 301 milliseconds