Home
last modified time | relevance | path

Searched refs:otherObject (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/util/
DEmailAddress.java222 public boolean equals(final Object otherObject) { in equals() argument
224 if (this == otherObject) { in equals()
227 if (otherObject instanceof EmailAddress) { in equals()
228 final EmailAddress otherAddress = (EmailAddress) otherObject; in equals()
/packages/services/Car/car-lib/src/android/car/diagnostic/
DCarDiagnosticEvent.java365 public boolean equals(Object otherObject) { in equals() argument
366 if (this == otherObject) { in equals()
369 if (null == otherObject) { in equals()
372 if (!(otherObject instanceof CarDiagnosticEvent)) { in equals()
375 CarDiagnosticEvent otherEvent = (CarDiagnosticEvent)otherObject; in equals()