Searched refs:other (Results 126 - 150 of 648) sorted by relevance

1234567891011>>

/frameworks/base/libs/hwui/renderstate/
H A DOffscreenBufferPool.h141 bool operator==(const Entry& other) const { return compare(*this, other) == 0; }
143 bool operator!=(const Entry& other) const { return compare(*this, other) != 0; }
145 bool operator<(const Entry& other) const { return Entry::compare(*this, other) < 0; }
/frameworks/base/media/mca/filterfw/native/core/
H A Dgeometry.cpp45 Point Point::operator+(const Point& other) const {
47 out.x_ = x_ + other.x_;
48 out.y_ = y_ + other.y_;
52 Point Point::operator-(const Point& other) const {
54 out.x_ = x_ - other.x_;
55 out.y_ = y_ - other.y_;
/frameworks/base/telecomm/java/android/telecom/
H A DPhoneAccountHandle.java83 * collide with values generated on other phones or after a data wipe of a given phone.
119 public boolean equals(Object other) { argument
120 return other != null &&
121 other instanceof PhoneAccountHandle &&
122 Objects.equals(((PhoneAccountHandle) other).getComponentName(),
124 Objects.equals(((PhoneAccountHandle) other).getId(), getId()) &&
125 Objects.equals(((PhoneAccountHandle) other).getUserHandle(), getUserHandle());
/frameworks/base/telephony/java/android/telephony/
H A DPreciseCallState.java289 PreciseCallState other = (PreciseCallState) obj;
290 return (mRingingCallState != other.mRingingCallState &&
291 mForegroundCallState != other.mForegroundCallState &&
292 mBackgroundCallState != other.mBackgroundCallState &&
293 mDisconnectCause != other.mDisconnectCause &&
294 mPreciseDisconnectCause != other.mPreciseDisconnectCause);
H A DDataSpecificRegistrationStates.java56 DataSpecificRegistrationStates other = (DataSpecificRegistrationStates) o;
57 return this.maxDataCalls == other.maxDataCalls;
/frameworks/support/room/migration/src/main/java/androidx/room/migration/bundle/
H A DEntityBundle.java183 public boolean isSchemaEqual(EntityBundle other) { argument
184 if (!mTableName.equals(other.mTableName)) {
187 return checkSchemaEquality(getFieldsByColumnName(), other.getFieldsByColumnName())
188 && checkSchemaEquality(mPrimaryKey, other.mPrimaryKey)
189 && checkSchemaEquality(mIndices, other.mIndices)
190 && checkSchemaEquality(mForeignKeys, other.mForeignKeys);
/frameworks/base/libs/hwui/
H A DRenderProperties.cpp60 LayerProperties& LayerProperties::operator=(const LayerProperties& other) { argument
61 setType(other.type());
62 setOpaque(other.opaque());
63 setAlpha(other.alpha());
64 setXferMode(other.xferMode());
65 setColorFilter(other.colorFilter());
82 RenderProperties& RenderProperties::operator=(const RenderProperties& other) { argument
83 if (this != &other) {
84 mPrimitiveFields = other.mPrimitiveFields;
85 setStaticMatrix(other
[all...]
/frameworks/base/core/java/android/print/
H A DPrinterCapabilitiesInfo.java86 public void copyFrom(PrinterCapabilitiesInfo other) { argument
87 if (this == other) {
91 mMinMargins = other.mMinMargins;
93 if (other.mMediaSizes != null) {
96 mMediaSizes.addAll(other.mMediaSizes);
98 mMediaSizes = new ArrayList<MediaSize>(other.mMediaSizes);
104 if (other.mResolutions != null) {
107 mResolutions.addAll(other.mResolutions);
109 mResolutions = new ArrayList<Resolution>(other.mResolutions);
115 mColorModes = other
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityWindowInfo.java35 * windows can be descendants of other windows, which is the windows are
446 * @param info The other info.
572 AccessibilityWindowInfo other = (AccessibilityWindowInfo) obj;
573 return (mId == other.mId);
685 * @param other The new state.
690 public boolean changed(AccessibilityWindowInfo other) { argument
691 if (other.mId != mId) {
694 if (other.mType != mType) {
697 if (!mBoundsInScreen.equals(other.mBoundsInScreen)) {
700 if (mLayer != other
730 differenceFrom(AccessibilityWindowInfo other) argument
[all...]
/frameworks/support/compat/src/androidTest/java/androidx/core/text/
H A DPrecomputedTextCompatTest.java119 Params other = new Params.Builder(PAINT)
123 assertTrue(base.equals(other));
124 assertTrue(other.equals(base));
125 assertEquals(base.hashCode(), other.hashCode());
127 other = new Params.Builder(PAINT)
131 assertFalse(base.equals(other));
132 assertFalse(other.equals(base));
134 other = new Params.Builder(PAINT)
138 assertFalse(base.equals(other));
139 assertFalse(other
[all...]
/frameworks/native/libs/input/
H A DInput.cpp178 bool PointerCoords::operator==(const PointerCoords& other) const {
179 if (bits != other.bits) {
184 if (values[i] != other.values[i]) {
191 void PointerCoords::copyFrom(const PointerCoords& other) { argument
192 bits = other.bits;
195 values[i] = other.values[i];
202 bool PointerProperties::operator==(const PointerProperties& other) const {
203 return id == other.id
204 && toolType == other.toolType;
207 void PointerProperties::copyFrom(const PointerProperties& other) { argument
252 copyFrom(const MotionEvent* other, bool keepHistory) argument
[all...]
/frameworks/base/telephony/java/android/telephony/data/
H A DApnSetting.java46 * carrier uses the name, type and other configuration in an {@code APNSetting} to decide which IP
748 ApnSetting other = (ApnSetting) o;
750 return mEntryName.equals(other.mEntryName)
751 && Objects.equals(mId, other.mId)
752 && Objects.equals(mOperatorNumeric, other.mOperatorNumeric)
753 && Objects.equals(mApnName, other.mApnName)
754 && Objects.equals(mProxyAddress, other.mProxyAddress)
755 && Objects.equals(mMmsc, other.mMmsc)
756 && Objects.equals(mMmsProxyAddress, other.mMmsProxyAddress)
757 && Objects.equals(mMmsProxyPort, other
828 similar(ApnSetting other) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DFeatureGroupInfo.java38 public FeatureGroupInfo(FeatureGroupInfo other) { argument
39 features = other.features;
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStorePublicKey.java65 AndroidKeyStorePublicKey other = (AndroidKeyStorePublicKey) obj;
66 if (!Arrays.equals(mEncoded, other.mEncoded)) {
/frameworks/base/libs/usb/tests/accessorytest/
H A Daudio.c56 int index, other; local
64 other = (index == 0 ? 1 : 0);
66 if (buffer_states[other] == BUFFER_EMPTY)
67 empty_index = other;
90 int index, other; local
98 other = (index == 0 ? 1 : 0);
100 if (buffer_states[other] == BUFFER_FULL)
101 full_index = other;
/frameworks/base/media/java/android/media/
H A DAudioMixPort.java62 AudioMixPort other = (AudioMixPort)o;
63 if (mIoHandle != other.ioHandle()) {
/frameworks/rs/
H A DrsList.h82 bool operator==(const iterator& other) const {
83 return p == other.p && buffer == other.buffer && list == other.list;
86 bool operator!=(const iterator& other) const {
87 return p != other.p || buffer != other.buffer || list != other.list;
H A DrsMap.h103 bool operator==(const iterator& other) const {
104 return node == other.node && bucket_index == other.bucket_index &&
105 map == other.map;
108 bool operator!=(const iterator& other) const {
109 return node != other.node || bucket_index != other.bucket_index ||
110 map != other.map;
/frameworks/support/work/workmanager/src/main/java/androidx/work/
H A DConstraints.java144 Constraints other = (Constraints) o;
145 return mRequiredNetworkType == other.mRequiredNetworkType
146 && mRequiresCharging == other.mRequiresCharging
147 && mRequiresDeviceIdle == other.mRequiresDeviceIdle
148 && mRequiresBatteryNotLow == other.mRequiresBatteryNotLow
149 && mRequiresStorageNotLow == other.mRequiresStorageNotLow
151 other.mContentUriTriggers) : other.mContentUriTriggers == null);
/frameworks/av/media/libstagefright/webm/
H A DWebmFrame.h38 bool operator<(const WebmFrame &other) const;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothCodecStatus.java58 BluetoothCodecStatus other = (BluetoothCodecStatus) o;
59 return (Objects.equals(other.mCodecConfig, mCodecConfig)
60 && sameCapabilities(other.mCodecsLocalCapabilities, mCodecsLocalCapabilities)
61 && sameCapabilities(other.mCodecsSelectableCapabilities,
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DSmsCbLocation.java117 SmsCbLocation other = (SmsCbLocation) o;
118 return mPlmn.equals(other.mPlmn) && mLac == other.mLac && mCid == other.mCid;
/frameworks/base/tools/aapt2/tools/
H A Dextract_unicode_properties.py24 def merge(self, other):
25 if self.last_char + 1 == other.first_char and self.prop_type == other.prop_type:
26 self.last_char = other.last_char
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DCallbackBindingObject.java53 boolean onClickWithParam(NotBindableVo other); argument
54 boolean onClickWithParam(View view, NotBindableVo other); argument
55 boolean onLongClickWithParam(NotBindableVo other); argument
56 boolean onLongClickWithParam(View view, NotBindableVo other); argument
/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
H A Dring_buffer.h25 RingBuffer(const RingBuffer& other) = default; member in class:android::dvr::RingBuffer
26 RingBuffer(RingBuffer&& other) = default; member in class:android::dvr::RingBuffer
27 RingBuffer& operator=(const RingBuffer& other) = default; member in class:android::dvr::RingBuffer
28 RingBuffer& operator=(RingBuffer&& other) = default; member in class:android::dvr::RingBuffer

Completed in 751 milliseconds

1234567891011>>