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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DFixedSizeDrawable.java32 FixedSizeDrawable(Drawable that) { argument
33 mDrawable = that;
/frameworks/base/tools/localize/
H A DValues.cpp35 StringResource::StringResource(const StringResource& that) argument
36 :pos(that.pos),
37 file(that.file),
38 config(that.config),
39 id(that.id),
40 index(that.index),
41 value(that.value),
42 version(that.version),
43 versionString(that.versionString),
44 comment(that
[all...]
H A DSourcePos.cpp21 ErrorPos(const ErrorPos& that);
37 ErrorPos::ErrorPos(const ErrorPos& that) argument
38 :file(that.file),
39 line(that.line),
40 error(that.error)
102 SourcePos::SourcePos(const SourcePos& that) argument
103 : file(that.file), line(that.line)
H A Dmerge_res_and_xliff.cpp112 // if it is present in xliff, use that
122 // if it is present in xx_current, use that
125 // guarantees that this tool never adds an empty one.
186 MergedFile::MergedFile(const MergedFile& that) argument
187 :xliff(that.xliff),
188 xliffFilename(that.xliffFilename),
189 original(that.original),
190 translated(that.translated),
191 en_current(that.en_current),
192 xx_current(that
[all...]
H A DXMLHandler.cpp127 XMLAttribute::XMLAttribute(const XMLAttribute& that) argument
128 :ns(that.ns),
129 name(that.name),
130 value(that.value)
146 XMLAttribute::Compare(const XMLAttribute& that) const
148 if (ns != that.ns) {
149 return ns < that.ns ? -1 : 1;
151 if (name != that.name) {
152 return name < that.name ? -1 : 1;
/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/core/java/android/content/res/
H A DConfiguration.java26 * This class describes all device configuration information that can
73 * Special flag we generate to indicate that the screen layout requires
74 * us to use a compatibility mode for apps that are not modern layout
140 * user, when that mechanism is closed. One of:
165 * controls from the user, when that mechanism is closed. One of:
486 * @param interestingChanges The configuration changes that the resource
497 * that 'this' is your current sequence and 'other' is a new one you have
599 public int compareTo(Configuration that) { argument
602 float b = that.fontScale;
605 n = this.mcc - that
642 equals(Configuration that) argument
648 equals(Object that) argument
[all...]
/frameworks/base/core/java/android/text/format/
H A DTime.java39 * The Julian day of the epoch, that is, January 1, 1970 on the Gregorian
161 // Set the daylight-saving indicator to the unknown value -1 so that
214 * the other fields. Requires that it be normalized for MONTH_DAY and
380 * format that does not include the "time" field. For example, all of the
429 * (that is, strings that contain no time or time offset). For example,
469 * Returns the timezone string that is currently set for the device.
500 * ambiguous because it falls in the hour that is repeated when switching
505 * assuming that DST changes at 2am on Sunday, Nov 4, 2007.
525 * to read back the same milliseconds that yo
550 set(Time that) argument
613 before(Time that) argument
625 after(Time that) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/sip/
H A DSipPhone.java55 // A call that is ringing or (call) waiting
91 // FIXME: is it true that we cannot take any incoming call if
117 // that happens.
209 public void conference(Call that) throws CallStateException { argument
211 if (!(that instanceof SipCall)) {
213 + ", cannot merge with " + that.getClass());
215 foregroundCall.merge((SipCall) that);
353 void switchWith(SipCall that) { argument
357 this.takeOver(that);
358 that
362 takeOver(SipCall that) argument
503 merge(SipCall that) argument
[all...]
/frameworks/base/voip/java/com/android/server/sip/
H A DSipService.java1079 // hold wakup lock so that we can finish changes before the
1131 * Timer that can schedule events to occur even when the device is in sleep.
1419 public boolean equals(Object that) { argument
1420 return (this == that);

Completed in 811 milliseconds