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

1234567891011>>

/frameworks/base/telephony/java/android/telephony/
H A DCellInfoLte.java77 public boolean equals(Object other) { argument
78 if (!super.equals(other)) {
82 CellInfoLte o = (CellInfoLte) other;
H A DCellInfoWcdma.java73 public boolean equals(Object other) { argument
74 if (!super.equals(other)) {
78 CellInfoWcdma o = (CellInfoWcdma) other;
H A DCellIdentityCdma.java146 public boolean equals(Object other) { argument
147 if (this == other) {
151 if (!(other instanceof CellIdentityCdma)) {
155 CellIdentityCdma o = (CellIdentityCdma) other;
H A DCellIdentityGsm.java162 public boolean equals(Object other) { argument
163 if (this == other) {
167 if (!(other instanceof CellIdentityGsm)) {
171 CellIdentityGsm o = (CellIdentityGsm) other;
H A DCellIdentityLte.java153 public boolean equals(Object other) { argument
154 if (this == other) {
158 if (!(other instanceof CellIdentityLte)) {
162 CellIdentityLte o = (CellIdentityLte) other;
H A DCellIdentityWcdma.java154 public boolean equals(Object other) { argument
155 if (this == other) {
159 if (!(other instanceof CellIdentityWcdma)) {
163 CellIdentityWcdma o = (CellIdentityWcdma) other;
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/
H A Dion_buffer.h23 IonBuffer(IonBuffer&& other);
24 IonBuffer& operator=(IonBuffer&& other);
58 // Duplicates the native handle underlying |other| and then imports it. This
62 int Duplicate(const IonBuffer* other);
/frameworks/support/compat/java/android/support/v4/view/
H A DWindowInsetsCompat.java55 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
72 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
89 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
106 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
123 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
354 WindowInsetsCompat other = (WindowInsetsCompat) o;
355 return mInsets == null ? other.mInsets == null : mInsets.equals(other.mInsets);
/frameworks/base/core/java/android/print/
H A DPrintAttributes.java379 PrintAttributes other = (PrintAttributes) obj;
380 if (mColorMode != other.mColorMode) {
383 if (mDuplexMode != other.mDuplexMode) {
387 if (other.mMinMargins != null) {
390 } else if (!mMinMargins.equals(other.mMinMargins)) {
394 if (other.mMediaSize != null) {
397 } else if (!mMediaSize.equals(other.mMediaSize)) {
401 if (other.mResolution != null) {
404 } else if (!mResolution.equals(other.mResolution)) {
441 public void copyFrom(PrintAttributes other) { argument
[all...]
/frameworks/av/camera/
H A DCameraMetadata.cpp45 CameraMetadata::CameraMetadata(const CameraMetadata &other) : argument
47 mBuffer = clone_camera_metadata(other.mBuffer);
55 CameraMetadata &CameraMetadata::operator=(const CameraMetadata &other) { argument
56 return operator=(other.mBuffer);
131 void CameraMetadata::acquire(CameraMetadata &other) { argument
136 acquire(other.release());
139 status_t CameraMetadata::append(const CameraMetadata &other) { argument
140 return append(other.mBuffer);
143 status_t CameraMetadata::append(const camera_metadata_t* other) { argument
148 size_t extraEntries = get_camera_metadata_entry_count(other);
684 swap(CameraMetadata& other) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/params/
H A DLensShadingMap.java223 final LensShadingMap other = (LensShadingMap) obj;
224 return mRows == other.mRows
225 && mColumns == other.mColumns
226 && Arrays.equals(mElements, other.mElements);
H A DTonemapCurve.java262 final TonemapCurve other = (TonemapCurve) obj;
263 return Arrays.equals(mRed, other.mRed) &&
264 Arrays.equals(mGreen, other.mGreen) &&
265 Arrays.equals(mBlue, other.mBlue);
/frameworks/base/core/java/android/text/util/
H A DRfc822Token.java198 Rfc822Token other = (Rfc822Token) o;
199 return (stringEquals(mName, other.mName) &&
200 stringEquals(mAddress, other.mAddress) &&
201 stringEquals(mComment, other.mComment));
/frameworks/base/core/java/android/util/
H A DSparseBooleanArray.java259 SparseBooleanArray other = (SparseBooleanArray) that;
260 if (mSize != other.mSize) {
265 if (mKeys[i] != other.mKeys[i]) {
268 if (mValues[i] != other.mValues[i]) {
/frameworks/base/core/java/android/view/autofill/
H A DAutofillValue.java161 final AutofillValue other = (AutofillValue) obj;
163 if (mType != other.mType) return false;
166 return mValue.toString().equals(other.mValue.toString());
168 return Objects.equals(mValue, other.mValue);
/frameworks/base/libs/hwui/
H A DGradientCache.h63 bool operator==(const GradientCacheEntry& other) const {
64 return compare(*this, other) == 0;
67 bool operator!=(const GradientCacheEntry& other) const {
68 return compare(*this, other) != 0;
/frameworks/base/libs/hwui/font/
H A DFont.h63 bool operator==(const FontDescription& other) const {
64 return compare(*this, other) == 0;
67 bool operator!=(const FontDescription& other) const {
68 return compare(*this, other) != 0;
/frameworks/base/services/core/java/com/android/server/pm/
H A DCrossProfileIntentFilter.java136 boolean equalsIgnoreFilter(CrossProfileIntentFilter other) { argument
137 return mTargetUserId == other.mTargetUserId
138 && mOwnerPackage.equals(other.mOwnerPackage)
139 && mFlags == other.mFlags;
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Ddefault_initialization_allocator.h25 using other = DefaultInitializationAllocator<
/frameworks/native/opengl/libagl/
H A DTokenizer.h33 Tokenizer(const Tokenizer& other);
/frameworks/native/vulkan/libvulkan/
H A Dlayers_extensions.h30 LayerRef(LayerRef&& other);
/frameworks/support/compat/java/android/support/v4/os/
H A DLocaleListInterface.java50 boolean equals(Object other); argument
/frameworks/base/core/java/android/bluetooth/le/
H A DScanFilter.java405 ScanFilter other = (ScanFilter) obj;
406 return Objects.equals(mDeviceName, other.mDeviceName) &&
407 Objects.equals(mDeviceAddress, other.mDeviceAddress) &&
408 mManufacturerId == other.mManufacturerId &&
409 Objects.deepEquals(mManufacturerData, other.mManufacturerData) &&
410 Objects.deepEquals(mManufacturerDataMask, other.mManufacturerDataMask) &&
411 Objects.equals(mServiceDataUuid, other.mServiceDataUuid) &&
412 Objects.deepEquals(mServiceData, other.mServiceData) &&
413 Objects.deepEquals(mServiceDataMask, other.mServiceDataMask) &&
414 Objects.equals(mServiceUuid, other
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityWindowInfo.java32 * windows can be descendants of other windows, which is the windows are
452 * @param info The other info.
581 AccessibilityWindowInfo other = (AccessibilityWindowInfo) obj;
582 return (mId == other.mId);
694 * @param other The new state.
699 public boolean changed(AccessibilityWindowInfo other) { argument
700 if (other.mId != mId) {
703 if (other.mType != mType) {
706 if (!mBoundsInScreen.equals(other.mBoundsInScreen)) {
709 if (mLayer != other
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioSession.cpp103 bool AudioSession::matches(const sp<AudioSession> &other) const
105 if (other->session() == mSession &&
106 other->inputSource() == mInputSource &&
107 other->format() == mConfig.format &&
108 other->sampleRate() == mConfig.sample_rate &&
109 other->channelMask() == mConfig.channel_mask &&
110 other->flags() == mFlags &&
111 other->uid() == mUid) {

Completed in 2198 milliseconds

1234567891011>>