Searched refs:other (Results 51 - 75 of 286) sorted by relevance

1234567891011>>

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandDetails.java44 public boolean compareTo(CommandDetails other) { argument
45 return (this.compRequired == other.compRequired &&
46 this.commandNumber == other.commandNumber &&
47 this.commandQualifier == other.commandQualifier &&
48 this.typeOfCommand == other.typeOfCommand);
/frameworks/base/media/java/android/media/
H A DRemoteDisplayState.java119 public RemoteDisplayInfo(RemoteDisplayInfo other) { argument
120 id = other.id;
121 name = other.name;
122 description = other.description;
123 status = other.status;
124 volume = other.volume;
125 volumeMax = other.volumeMax;
126 volumeHandling = other.volumeHandling;
127 presentationDisplayId = other.presentationDisplayId;
/frameworks/av/include/camera/
H A DCameraMetadata.h44 CameraMetadata(const CameraMetadata &other);
49 CameraMetadata &operator=(const CameraMetadata &other);
91 * Acquires raw buffer from other CameraMetadata object. After the call, the argument
94 void acquire(CameraMetadata &other);
99 status_t append(const CameraMetadata &other);
104 status_t append(const camera_metadata* other);
168 * Swap the underlying camera metadata between this and the other
171 void swap(CameraMetadata &other);
/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/telephony/java/android/telephony/
H A DPreciseCallState.java291 PreciseCallState other = (PreciseCallState) obj;
292 return (mRingingCallState != other.mRingingCallState &&
293 mForegroundCallState != other.mForegroundCallState &&
294 mBackgroundCallState != other.mBackgroundCallState &&
295 mDisconnectCause != other.mDisconnectCause &&
296 mPreciseDisconnectCause != other.mPreciseDisconnectCause);
H A DDataConnectionRealTimeInfo.java125 DataConnectionRealTimeInfo other = (DataConnectionRealTimeInfo) obj;
126 return (mTime == other.mTime)
127 && (mDcPowerState == other.mDcPowerState);
/frameworks/base/libs/hwui/
H A DRenderProperties.cpp68 LayerProperties& LayerProperties::operator=(const LayerProperties& other) { argument
69 setType(other.type());
70 setOpaque(other.opaque());
71 setAlpha(other.alpha());
72 setXferMode(other.xferMode());
73 setColorFilter(other.colorFilter());
112 RenderProperties& RenderProperties::operator=(const RenderProperties& other) { argument
113 if (this != &other) {
114 mPrimitiveFields = other.mPrimitiveFields;
115 setStaticMatrix(other
[all...]
/frameworks/base/core/java/android/view/
H A DSurfaceControl.java101 * be disabled, but other measures can take place, for instance the
122 * composited on top of each-other into the surface. A pre-multiplied
281 + "Set the other properties and make the surface visible within "
478 public PhysicalDisplayInfo(PhysicalDisplayInfo other) { argument
479 copyFrom(other);
487 public boolean equals(PhysicalDisplayInfo other) { argument
488 return other != null
489 && width == other.width
490 && height == other.height
491 && refreshRate == other
505 copyFrom(PhysicalDisplayInfo other) argument
[all...]
H A DMagnificationSpec.java54 public static MagnificationSpec obtain(MagnificationSpec other) { argument
56 info.scale = other.scale;
57 info.offsetX = other.offsetX;
58 info.offsetY = other.offsetY;
/frameworks/base/core/java/android/content/pm/
H A DFeatureGroupInfo.java38 public FeatureGroupInfo(FeatureGroupInfo other) { argument
39 features = other.features;
/frameworks/base/core/java/android/service/notification/
H A DCondition.java127 final Condition other = (Condition) o;
128 return Objects.equals(other.id, id)
129 && Objects.equals(other.summary, summary)
130 && Objects.equals(other.line1, line1)
131 && Objects.equals(other.line2, line2)
132 && other.icon == icon
133 && other.state == state
134 && other.flags == flags;
/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/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
250 copyFrom(const MotionEvent* other, bool keepHistory) argument
[all...]
/frameworks/av/media/libstagefright/webm/
H A DWebmFrame.h38 bool operator<(const WebmFrame &other) const;
/frameworks/base/core/java/android/print/
H A DPrintJobInfo.java176 public PrintJobInfo(PrintJobInfo other) { argument
177 mId = other.mId;
178 mLabel = other.mLabel;
179 mPrinterId = other.mPrinterId;
180 mPrinterName = other.mPrinterName;
181 mState = other.mState;
182 mAppId = other.mAppId;
183 mTag = other.mTag;
184 mCreationTime = other.mCreationTime;
185 mCopies = other
[all...]
H A DPrinterId.java94 PrinterId other = (PrinterId) object;
96 if (other.mServiceName != null) {
99 } else if (!mServiceName.equals(other.mServiceName)) {
102 if (!TextUtils.equals(mLocalId, other.mLocalId)) {
/frameworks/compile/mclinker/unittests/
H A DNamePoolTest.cpp77 ResolveInfo::Visibility other = ResolveInfo::Default; local
85 other,
96 EXPECT_EQ(other, result1.info->visibility());
105 other,
116 EXPECT_EQ(other, result1.info->visibility());
128 ResolveInfo::Visibility other = ResolveInfo::Default; local
136 other,
147 EXPECT_EQ(other, result1.info->visibility());
156 other,
169 other,
186 uint8_t other = 0; local
219 uint8_t other = 0; local
[all...]
/frameworks/native/services/sensorservice/
H A DSensorDevice.h50 bool operator != (const BatchParams& other) { argument
51 return other.batchDelay != batchDelay || other.batchTimeout != batchTimeout ||
52 other.flags != flags;
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbLocation.java117 SmsCbLocation other = (SmsCbLocation) o;
118 return mPlmn.equals(other.mPlmn) && mLac == other.mLac && mCid == other.mCid;
/frameworks/base/core/java/android/accounts/
H A DAccount.java35 final Account other = (Account)o;
36 return name.equals(other.name) && type.equals(other.type);
/frameworks/base/core/java/android/net/
H A DUidRange.java65 UidRange other = (UidRange) o;
66 return start == other.start && stop == other.stop;
/frameworks/base/core/java/android/util/
H A DSize.java59 * A size object is never equal to any other type of object.
73 Size other = (Size) obj;
74 return mWidth == other.mWidth && mHeight == other.mHeight;
H A DSizeF.java83 final SizeF other = (SizeF) obj;
84 return mWidth == other.mWidth && mHeight == other.mHeight;
/frameworks/base/media/java/android/media/projection/
H A DMediaProjectionInfo.java51 final MediaProjectionInfo other = (MediaProjectionInfo) o;
52 return Objects.equals(other.mPackageName, mPackageName)
53 && Objects.equals(other.mUserHandle, mUserHandle);
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteDiscoveryRequest.java92 MediaRouteDiscoveryRequest other = (MediaRouteDiscoveryRequest)o;
93 return getSelector().equals(other.getSelector())
94 && isActiveScan() == other.isActiveScan();

Completed in 519 milliseconds

1234567891011>>