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

/packages/apps/Email/src/com/android/email/mail/store/imap/
H A DImapElement.java47 * An element that is returned by {@link ImapList#getElementOrNone} to indicate an index
69 public boolean equalsForTest(ImapElement that) {
70 return super.equalsForTest(that);
102 * Return a string that represents this object; it's purely for the debug purpose. Don't
111 * The equals implementation that is intended to be used only for unit testing.
114 public boolean equalsForTest(ImapElement that) { argument
115 if (that == null) {
118 return this.getClass() == that.getClass(); // Has to be the same class.
H A DImapResponse.java133 public boolean equalsForTest(ImapElement that) { argument
134 if (!super.equalsForTest(that)) {
137 final ImapResponse thatResponse = (ImapResponse) that;
H A DImapList.java220 public boolean equalsForTest(ImapElement that) { argument
221 if (!super.equalsForTest(that)) {
224 ImapList thatList = (ImapList) that;
H A DImapString.java31 * Class represents an IMAP "element" that is not a list.
180 public final boolean equalsForTest(ImapElement that) { argument
181 if (!super.equalsForTest(that)) {
184 ImapString thatString = (ImapString) that;
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
H A DLevenshteinDistance.java103 * token that was unchanged/replaced, or the position in the source after which a target
170 public boolean prefixOf(final Token that) { argument
172 if (len > that.length()) return false;
174 final int thatStart = that.mStart;
176 final char[] thatContainer = that.mContainer;
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DStorageMeasurement.java118 // Start the thread that will measure the disk usage.
127 * @param storageVolume The {@link StorageVolume} that will be measured
538 public int compareTo(FileInfo that) { argument
539 if (this == that || mSize == that.mSize) return 0;
540 else return (mSize < that.mSize) ? 1 : -1; // for descending sort

Completed in 212 milliseconds