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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DFixedSizeDrawable.java32 public FixedSizeDrawable(Drawable that) { argument
33 mDrawable = that;
/frameworks/base/core/java/android/content/
H A DComponentName.java27 * {@link android.content.ContentProvider}) that is available. Two
30 * name inside of that package.
40 * @param pkg The name of the package that the component exists in. Can
42 * @param cls The name of the class inside of <var>pkg</var> that
57 * @param cls The name of the class inside of <var>pkg</var> that
113 * Return a String that unambiguously describes both the package and
144 * Recover a ComponentName from a String that was previously created with
153 * @param str The String that was returned by flattenToString().
155 * names that were encoded in <var>str</var>
205 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/base/voip/java/com/android/server/sip/
H A DSipWakeupTimer.java45 * Timer that can schedule events to occur even when the device is in sleep.
327 // Sort the events by mMaxPeriod so that the first event can be used to
337 public boolean equals(Object that) { argument
338 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
75 /** Constant for {@link #screenLayout}: bits that encode the size. */
78 * value indicating that no size has been set. */
113 /** Constant for {@link #screenLayout}: bits that encode the aspect ratio. */
116 * value indicating that no size has been set. */
119 * value that corresponds to the
124 * value that corresponds to the
129 /** Constant for {@link #screenLayout}: bits that encode the layout direction. */
134 * value indicating that no layout dir has been set. */
137 * value indicating that
1118 compareTo(Configuration that) argument
1169 equals(Configuration that) argument
1175 equals(Object that) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java56 // A call that is ringing or (call) waiting
79 SipPhone that = (SipPhone) o;
80 return mProfile.getUriString().equals(that.mProfile.getUriString());
100 // FIXME: is it true that we cannot take any incoming call if
126 // that happens.
214 public void conference(Call that) throws CallStateException { argument
216 if (!(that instanceof SipCall)) {
218 + ", cannot merge with " + that.getClass());
220 foregroundCall.merge((SipCall) that);
358 void switchWith(SipCall that) { argument
367 takeOver(SipCall that) argument
508 merge(SipCall that) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DGridLayout.java50 * A layout that places its children in a rectangular <em>grid</em>.
52 * The grid is composed of a set of infinitely thin lines that separate the
55 * has {@code N + 1} grid indices that run from {@code 0}
66 * Each spec defines the set of rows or columns that are to be
70 * In this case however, there is no guarantee that children will not themselves
109 * is taken as <em>flexible</em> in that direction. If no alignment was set,
115 * within it are flexible. Row and column groups that sit either side of a common boundary
120 * gravity. To prevent a column from stretching, ensure that one of the components
124 * GridLayout's algorithms favour rows and columns that are closer to its <em>right</em>
138 * When using either of these techniques, bear in mind that cel
1923 LayoutParams(LayoutParams that) argument
2290 equals(Object that) argument
2386 equals(Object that) argument
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java50 * A layout that places its children in a rectangular <em>grid</em>.
52 * The grid is composed of a set of infinitely thin lines that separate the
55 * has {@code N + 1} grid indices that run from {@code 0}
66 * Each spec defines the set of rows or columns that are to be
70 * In this case however, there is no guarantee that children will not themselves
109 * is taken as <em>flexible</em> in that direction. If no alignment was set,
115 * within it are flexible. Row and column groups that sit either side of a common boundary
120 * gravity. To prevent a column from stretching, ensure that one of the components
124 * GridLayout's algorithms favour rows and columns that are closer to its <em>right</em>
138 * When using either of these techniques, bear in mind that cel
1856 LayoutParams(LayoutParams that) argument
2222 equals(Object that) argument
2318 equals(Object that) argument
[all...]

Completed in 278 milliseconds