Searched defs:other (Results 1 - 25 of 96) sorted by last modified time

1234

/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/property/
H A DPropertyInfo.java39 public boolean equals(Object other) { argument
40 if (other instanceof PropertyInfo) {
41 return ((PropertyInfo) other).mPropId == mPropId;
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/vhal/
H A DVehicleHalFragment.java127 public boolean equals(Object other) { argument
128 if (other instanceof HalPropertyInfo) {
129 return ((HalPropertyInfo)other).id == id;
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...
/packages/services/Telecomm/src/com/android/server/telecom/
H A DAnalytics.java239 CallInfoImpl(CallInfoImpl other) { argument
240 this.callId = other.callId;
241 this.startTime = other.startTime;
242 this.endTime = other.endTime;
243 this.callDirection = other.callDirection;
244 this.isAdditionalCall = other.isAdditionalCall;
245 this.isInterrupted = other.isInterrupted;
246 this.callTechnologies = other.callTechnologies;
247 this.createdFromExistingConnection = other.createdFromExistingConnection;
248 this.connectionService = other
[all...]
/packages/services/Telecomm/src/com/android/server/telecom/callfiltering/
H A DCallFilteringResult.java37 public CallFilteringResult combine(CallFilteringResult other) { argument
38 if (other == null) {
43 shouldAllowCall && other.shouldAllowCall,
44 shouldReject || other.shouldReject,
45 shouldAddToCallLog && other.shouldAddToCallLog,
46 shouldShowNotification && other.shouldShowNotification);
/packages/services/Car/car-lib/src/android/car/drivingstate/
H A DCarUxRestrictions.java376 * @param other the other CarUxRestrictions object
379 public boolean isSameRestrictions(CarUxRestrictions other) { argument
380 if (other == null) {
383 if (other == this) {
386 return other.mRequiresDistractionOptimization == mRequiresDistractionOptimization
387 && other.mActiveRestrictions == mActiveRestrictions;
/packages/services/Car/car-lib/src/android/car/storagemonitoring/
H A DIoStats.java174 public boolean equals(Object other) { argument
175 if (other instanceof IoStats) {
176 IoStats delta = (IoStats)other;
H A DIoStatsEntry.java53 * In other cases, the user id can refer to either the kernel itself (uid 0), or low-level
137 * stored in other.
144 public IoStatsEntry delta(IoStatsEntry other) { argument
145 if (uid != other.uid) {
149 runtimeMillis - other.runtimeMillis,
150 foreground.delta(other.foreground), background.delta(other.background));
154 public boolean equals(Object other) { argument
155 if (other instanceof IoStatsEntry) {
156 IoStatsEntry uidIoStatEntry = (IoStatsEntry)other;
301 delta(Metrics other) argument
310 equals(Object other) argument
[all...]
H A DLifetimeWriteInfo.java94 public boolean equals(Object other) { argument
95 if (other instanceof LifetimeWriteInfo) {
96 LifetimeWriteInfo lifetime = (LifetimeWriteInfo)other;
H A DUidIoRecord.java69 public UidIoRecord delta(IoStatsEntry other) { argument
70 if (uid != other.uid) {
75 foreground_rchar - other.foreground.bytesRead,
76 foreground_wchar - other.foreground.bytesWritten,
77 foreground_read_bytes - other.foreground.bytesReadFromStorage,
78 foreground_write_bytes - other.foreground.bytesWrittenToStorage,
79 foreground_fsync - other.foreground.fsyncCalls,
80 background_rchar - other.background.bytesRead,
81 background_wchar - other.background.bytesWritten,
82 background_read_bytes - other
88 delta(UidIoRecord other) argument
[all...]
H A DWearEstimate.java130 public boolean equals(Object other) { argument
131 if (other instanceof WearEstimate) {
132 WearEstimate wo = (WearEstimate)other;
H A DWearEstimateChange.java111 public boolean equals(Object other) { argument
112 if (other instanceof WearEstimateChange) {
113 WearEstimateChange wo = (WearEstimateChange)other;
/packages/services/Car/procfs-inspector/client/src/com/android/car/procfsinspector/
H A DProcessInfo.java59 public boolean equals(Object other) { argument
60 if (other instanceof ProcessInfo) {
61 ProcessInfo processInfo = (ProcessInfo)other;
/packages/services/Car/service/src/com/android/car/storagemonitoring/
H A DWearEstimateRecord.java91 public boolean equals(Object other) { argument
92 if (other instanceof WearEstimateRecord) {
93 WearEstimateRecord wer = (WearEstimateRecord)other;
H A DWearHistory.java128 public boolean equals(Object other) { argument
129 if (other instanceof WearHistory) {
130 WearHistory wi = (WearHistory)other;
H A DWearInformation.java63 public boolean equals(Object other) { argument
64 if (other instanceof WearInformation) {
65 WearInformation wi = (WearInformation)other;
/packages/services/BuiltInPrintService/src/com/android/bips/ipp/
H A DJobStatus.java70 private JobStatus(JobStatus other) { argument
71 mId = other.mId;
72 mJobState = other.mJobState;
73 mJobResult = other.mJobResult;
74 mBlockedReasons = other.mBlockedReasons;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboardId.java125 private boolean equals(final KeyboardId other) { argument
126 if (other == this)
128 return other.mElementId == mElementId
129 && other.mMode == mMode
130 && other.mWidth == mWidth
131 && other.mHeight == mHeight
132 && other.passwordInput() == passwordInput()
133 && other.mClobberSettingsKey == mClobberSettingsKey
134 && other.mHasShortcutKey == mHasShortcutKey
135 && other
182 equals(final Object other) argument
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DEntityDelta.java276 final EntityDelta other = (EntityDelta)object;
279 if (!other.mValues.equals(mValues)) return false;
284 if (!other.containsEntry(child)) return false;
739 final ValuesDelta other = (ValuesDelta)object;
740 return this.subsetEquals(other) && other.subsetEquals(this);
771 public boolean subsetEquals(ValuesDelta other) { argument
774 final String theirValue = other.getAsString(key);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DAccount.java711 final Account other = (Account) o;
712 return TextUtils.equals(displayName, other.displayName) &&
713 TextUtils.equals(senderName, other.senderName) &&
714 TextUtils.equals(accountManagerName, other.accountManagerName) &&
715 TextUtils.equals(accountId, other.accountId) &&
716 TextUtils.equals(type, other.type) &&
717 capabilities == other.capabilities &&
718 providerVersion == other.providerVersion &&
719 Objects.equal(uri, other.uri) &&
720 Objects.equal(folderListUri, other
755 settingsDiffer(Account other) argument
808 matches(Account other) argument
[all...]
H A DConversation.java155 // that is it's now in some other folder(s)
314 public Conversation(Conversation other) { argument
315 if (other == null) {
319 id = other.id;
320 uri = other.uri;
321 dateMs = other.dateMs;
322 subject = other.subject;
323 hasAttachments = other.hasAttachments;
324 messageListUri = other.messageListUri;
325 sendingState = other
[all...]
H A DFolder.java52 * A folder is a collection of conversations, and perhaps other folders.
604 public int compareTo(Folder other) { argument
605 return name.compareToIgnoreCase(other.name);
847 desc = "other:" + persistentId;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DConversationCheckedSet.java279 public void putAll(ConversationCheckedSet other) { argument
280 if (other == null) {
285 mInternalMap.putAll(other.mInternalMap);
H A DConversationViewState.java66 public ConversationViewState(ConversationViewState other) { argument
67 mConversationInfo = other.mConversationInfo;
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DNotificationUtils.java353 * All other account-folder pairs will not have their notifications resent.
1917 public boolean equals(Object other) { argument
1918 if (!(other instanceof NotificationKey)) {
1921 NotificationKey key = (NotificationKey) other;
2004 // If this setting has been changed some other way, don't overwrite it

Completed in 699 milliseconds

1234