Searched refs:other (Results 276 - 300 of 648) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/android/view/
H A DSurface.java484 * @param other {@link SurfaceControl} to copy from.
488 public void copyFrom(SurfaceControl other) { argument
489 if (other == null) {
490 throw new IllegalArgumentException("other must not be null");
493 long surfaceControlPtr = other.mNativeObject;
516 * @param other {@link SurfaceControl} to create surface from.
520 public void createFrom(SurfaceControl other) { argument
521 if (other == null) {
522 throw new IllegalArgumentException("other must not be null");
525 long surfaceControlPtr = other
547 transferFrom(Surface other) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DCellInfoCdma.java73 public boolean equals(Object other) { argument
74 if (!super.equals(other)) {
78 CellInfoCdma o = (CellInfoCdma) other;
H A DCellInfoGsm.java73 public boolean equals(Object other) { argument
74 if (!super.equals(other)) {
78 CellInfoGsm o = (CellInfoGsm) other;
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;
/frameworks/minikin/include/minikin/
H A DRange.h59 inline bool contains(const Range& other) const {
60 return mStart <= other.mStart && other.mEnd <= mEnd;
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/
H A Dion_buffer.h23 IonBuffer(IonBuffer&& other);
24 IonBuffer& operator=(IonBuffer&& other);
61 // Duplicates the native handle underlying |other| and then imports it. This
65 int Duplicate(const IonBuffer* other);
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DWindowInsetsCompat.java56 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
73 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
90 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
107 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
124 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
383 WindowInsetsCompat other = (WindowInsetsCompat) o;
384 return mInsets == null ? other.mInsets == null : mInsets.equals(other.mInsets);
/frameworks/support/media/src/main/java/androidx/media/
H A DSessionCommand2.java426 SessionCommand2 other = (SessionCommand2) obj;
427 return mCommandCode == other.mCommandCode
428 && TextUtils.equals(mCustomCommand, other.mCustomCommand);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java60 * to the view hierarchy. In other words, a custom view is free to report itself as
1316 * A screen-reader must visit the content of the other node before the content
1331 * A screen-reader must visit the content of the other node before the content
1349 * A screen-reader must visit the content of the other node before the content
2359 * a focusable unit. Screen readers should generally use other signals, such as
3138 * @param info The other info.
3428 * @param other The other instance.
3430 private void init(AccessibilityNodeInfo other) { argument
3431 mSealed = other
4367 equals(Object other) argument
4419 obtain(RangeInfo other) argument
4558 obtain(CollectionInfo other) argument
4700 obtain(CollectionItemInfo other) argument
[all...]
/frameworks/base/core/java/android/print/
H A DPrintAttributes.java383 PrintAttributes other = (PrintAttributes) obj;
384 if (mColorMode != other.mColorMode) {
387 if (mDuplexMode != other.mDuplexMode) {
391 if (other.mMinMargins != null) {
394 } else if (!mMinMargins.equals(other.mMinMargins)) {
398 if (other.mMediaSize != null) {
401 } else if (!mMediaSize.equals(other.mMediaSize)) {
405 if (other.mResolution != null) {
408 } else if (!mResolution.equals(other.mResolution)) {
445 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/cmds/incidentd/src/
H A DPrivacy.h73 bool operator<(const PrivacySpec& other) const;
/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/hardware/display/
H A DAmbientBrightnessDayStats.java149 AmbientBrightnessDayStats other = (AmbientBrightnessDayStats) obj;
150 return mLocalDate.equals(other.mLocalDate) && Arrays.equals(mBucketBoundaries,
151 other.mBucketBoundaries) && Arrays.equals(mStats, other.mStats);
H A DBrightnessConfiguration.java115 final BrightnessConfiguration other = (BrightnessConfiguration) o;
116 return Arrays.equals(mLux, other.mLux) && Arrays.equals(mNits, other.mNits)
117 && Objects.equals(mDescription, other.mDescription);
/frameworks/base/core/java/android/os/
H A DHwRemoteBinder.java68 public final native boolean equals(Object other); argument
/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.java263 SparseBooleanArray other = (SparseBooleanArray) that;
264 if (mSize != other.mSize) {
269 if (mKeys[i] != other.mKeys[i]) {
272 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 { return compare(*this, other) == 0; }
65 bool operator!=(const GradientCacheEntry& other) const { return compare(*this, other) != 0; }
/frameworks/base/libs/hwui/font/
H A DFont.h61 bool operator==(const FontDescription& other) const { return compare(*this, other) == 0; }
63 bool operator!=(const FontDescription& other) const { return compare(*this, other) != 0; }
/frameworks/base/libs/hwui/thread/
H A DWorkQueue.h47 WorkItem(const WorkItem& other) = delete; member in struct:android::uirenderer::WorkQueue::WorkItem
48 WorkItem& operator=(const WorkItem& other) = delete; member in struct:android::uirenderer::WorkQueue::WorkItem
49 WorkItem(WorkItem&& other) = default; member in struct:android::uirenderer::WorkQueue::WorkItem
50 WorkItem& operator=(WorkItem&& other) = default; member in struct:android::uirenderer::WorkQueue::WorkItem
/frameworks/base/media/java/android/media/
H A DMicrophoneInfo.java394 Coordinate3F other = (Coordinate3F) obj;
395 return this.x == other.x && this.y == other.y && this.z == other.z;

Completed in 268 milliseconds

<<11121314151617181920>>