Searched refs:other (Results 201 - 225 of 396) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/hardware/camera2/params/
H A DColorSpaceTransform.java227 final ColorSpaceTransform other = (ColorSpaceTransform) obj;
231 int numeratorOther = other.mElements[j + OFFSET_NUMERATOR];
232 int denominatorOther = other.mElements[j + OFFSET_DENOMINATOR];
H A DReprocessFormatsMap.java243 final ReprocessFormatsMap other = (ReprocessFormatsMap) obj;
245 return Arrays.equals(mEntry, other.mEntry);
/frameworks/base/core/java/android/net/
H A DLinkAddress.java205 * the other is not.
236 * @param other the {@code LinkAddress} to compare to.
241 public boolean isSameAddressAs(LinkAddress other) { argument
242 return address.equals(other.address) && prefixLength == other.prefixLength;
/frameworks/base/core/java/android/util/
H A DMemoryIntArray.java35 * each other.
64 * @param clientWritable Whether other processes can write to the array.
191 MemoryIntArray other = (MemoryIntArray) obj;
193 if (other.mFd != null) {
196 } else if (mFd.getFd() != other.mFd.getFd()) {
H A DRange.java156 Range other = (Range) obj;
157 return mLower.equals(other.mLower) && mUpper.equals(other.mUpper);
199 * @return the intersection of this range and the other range.
231 * @return the intersection of this range and the other range
268 * @return the extension of this range and the other range.
279 // other includes this
282 // this inludes other
299 * @return the extension of this range and the other range.
312 // this inludes other
[all...]
H A DRational.java179 * <p>A finite value occurs when the denominator is not {@code 0}; in other words
213 * other type will return {@code false}).</p>
243 private boolean equals(Rational other) { argument
244 return (mNumerator == other.mNumerator && mDenominator == other.mDenominator);
255 * <li>All other values will return {@code "numerator/denominator"} where {@code numerator}
446 * <p>{@link #NaN} is considered to be equal to itself and greater than all other
451 * <li>Positive infinity is greater than any other finite number (or negative infinity)
452 * <li>Negative infinity is less than any other finite number (or positive infinity)
454 * against the other finit
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
H A DRestrictedLockUtils.java709 public EnforcedAdmin(EnforcedAdmin other) { argument
710 if (other == null) {
713 this.component = other.component;
714 this.userId = other.userId;
723 EnforcedAdmin other = (EnforcedAdmin) object;
724 if (userId != other.userId) {
727 if ((component == null && other.component == null) ||
728 (component != null && component.equals(other.component))) {
739 public void copyTo(EnforcedAdmin other) { argument
740 if (other
[all...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DDisplayAdjustmentUtils.java138 private static float[] multiply(float[] matrix, float[] other) { argument
140 return other;
143 Matrix.multiplyMM(result, 0, matrix, 0, other, 0);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DModelMethod.java87 public boolean isBetterArgMatchThan(ModelMethod other, List<ModelClass> args) { argument
89 final ModelClass[] otherParameterTypes = other.getParameterTypes();
93 final ModelClass thatParameter = other.getParameter(i, otherParameterTypes);
/frameworks/ex/common/tools/
H A Dmake-iana-tld-pattern.py35 def __iadd__(self, other):
36 self.buffer += other
37 self.lineLength += len(other)
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCellBroadcastHandler.java146 // Try to find other pages of the same message
217 SmsCbConcatInfo other = (SmsCbConcatInfo)obj;
222 return mHeader.getSerialNumber() == other.mHeader.getSerialNumber()
223 && mLocation.equals(other.mLocation);
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteSelector.java166 MediaRouteSelector other = (MediaRouteSelector)o;
168 other.ensureControlCategories();
169 return mControlCategories.equals(other.mControlCategories);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSecurityViewFlipper.java269 public LayoutParams(ViewGroup.LayoutParams other) { argument
270 super(other);
273 public LayoutParams(LayoutParams other) { argument
274 super(other);
276 maxWidth = other.maxWidth;
277 maxHeight = other.maxHeight;
/frameworks/base/core/java/android/accounts/
H A DAuthenticatorDescription.java113 final AuthenticatorDescription other = (AuthenticatorDescription) o;
114 return type.equals(other.type);
/frameworks/base/core/java/android/nfc/
H A DNdefMessage.java245 NdefMessage other = (NdefMessage) obj;
246 return Arrays.equals(mRecords, other.mRecords);
/frameworks/base/core/java/android/view/
H A DDisplay.java1063 public boolean equals(Object other) { argument
1064 if (this == other) {
1067 if (!(other instanceof Mode)) {
1070 Mode that = (Mode) other;
1281 public boolean equals(Object other) { argument
1282 if (this == other) {
1285 if (!(other instanceof ColorTransform)) {
1288 ColorTransform that = (ColorTransform) other;
H A DFrameMetrics.java116 * Equal to the sum of the values of all other time-valued metric
131 * and are usually hidden by window animations or other tricks.
240 * @param other the FrameMetrics object to copy.
242 public FrameMetrics(FrameMetrics other) { argument
244 System.arraycopy(other.mTimingData, 0, mTimingData, 0, mTimingData.length);
/frameworks/base/services/tests/servicestests/src/com/android/server/notification/
H A DBuzzBeepBlinkTest.java313 NotificationRecord other = getNoisyOtherNotification();
317 mService.buzzBeepBlinkLocked(other); // this takes the audio stream
328 NotificationRecord other = getQuietOtherNotification();
335 mService.buzzBeepBlinkLocked(other);
471 NotificationRecord other = getNoisyOtherNotification();
475 mService.buzzBeepBlinkLocked(other); // this takes the vibrate stream
486 NotificationRecord other = getQuietOtherNotification();
493 mService.buzzBeepBlinkLocked(other);
/frameworks/minikin/include/minikin/
H A DMinikinFont.h38 bool operator==(const HyphenEdit &other) const { return hyphen == other.hyphen; }
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.h95 bool operator<(const ResponseID &other) const {
96 return mSessionID < other.mSessionID
97 || (mSessionID == other.mSessionID
98 && mCSeq < other.mCSeq);
/frameworks/base/libs/hwui/hwui/
H A DPaint.h36 Paint& operator=(const Paint& other);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java301 WifiP2pDevice other = (WifiP2pDevice) obj;
302 if (other == null || other.deviceAddress == null) {
305 return other.deviceAddress.equals(deviceAddress);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DScanResults.java58 for (ScanResults other : others) {
59 scanDetails.addAll(other.getScanDetailArrayList());
60 scanDataResults.addAll(Arrays.asList(other.getScanData().getResults()));
61 rawScanResults.addAll(Arrays.asList(other.getRawScanResults()));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsBroadcastUndelivered.java187 // to state machine which will find the other pieces to broadcast
265 SmsReferenceKey other = (SmsReferenceKey) o;
266 return other.mAddress.equals(mAddress)
267 && (other.mReferenceNumber == mReferenceNumber)
268 && (other.mMessageCount == mMessageCount);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DItemAnimatorV2ApiTest.java77 // I don't think we can do much better since other option is to bind a fresh view
202 RecyclerView.ViewHolder other = mRecyclerView.findViewHolderForAdapterPosition(i);
203 assertEquals(0, mAnimator.preLayoutInfoMap.get(other).changeFlags);
206 RecyclerView.ViewHolder other = mRecyclerView.findViewHolderForAdapterPosition(i);
207 assertEquals(FLAG_MOVED, mAnimator.preLayoutInfoMap.get(other).changeFlags);
227 RecyclerView.ViewHolder other = mRecyclerView.findViewHolderForAdapterPosition(i);
228 assertEquals(0, mAnimator.preLayoutInfoMap.get(other).changeFlags);
231 RecyclerView.ViewHolder other = mRecyclerView.findViewHolderForAdapterPosition(i);
232 assertEquals(FLAG_MOVED, mAnimator.preLayoutInfoMap.get(other).changeFlags);
257 RecyclerView.ViewHolder other
[all...]

Completed in 3916 milliseconds

1234567891011>>