Searched refs:other (Results 26 - 50 of 197) sorted by relevance

12345678

/frameworks/base/core/java/android/content/pm/
H A DVerificationParams.java126 final VerificationParams other = (VerificationParams) o;
129 if (other.mVerificationURI != null) {
132 } else if (!mVerificationURI.equals(other.mVerificationURI)) {
137 if (other.mOriginatingURI != null) {
140 } else if (!mOriginatingURI.equals(other.mOriginatingURI)) {
145 if (other.mReferrer != null) {
148 } else if (!mReferrer.equals(other.mReferrer)) {
152 if (mOriginatingUid != other.mOriginatingUid) {
157 if (other.mManifestDigest != null) {
160 } else if (!mManifestDigest.equals(other
[all...]
H A DPackageCleanItem.java41 PackageCleanItem other = (PackageCleanItem)obj;
42 return userId == other.userId && packageName.equals(other.packageName)
43 && andCode == other.andCode;
/frameworks/base/core/java/android/print/
H A DPrinterCapabilitiesInfo.java79 public void copyFrom(PrinterCapabilitiesInfo other) { argument
80 if (this == other) {
84 mMinMargins = other.mMinMargins;
86 if (other.mMediaSizes != null) {
89 mMediaSizes.addAll(other.mMediaSizes);
91 mMediaSizes = new ArrayList<MediaSize>(other.mMediaSizes);
97 if (other.mResolutions != null) {
100 mResolutions.addAll(other.mResolutions);
102 mResolutions = new ArrayList<Resolution>(other.mResolutions);
108 mColorModes = other
[all...]
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)) {
H A DPageRange.java112 PageRange other = (PageRange) obj;
113 if (mEnd != other.mEnd) {
116 if (mStart != other.mStart) {
/frameworks/base/libs/hwui/
H A DLayerCache.h62 * not enough space available. Adding a layer can cause other layers to
110 bool operator==(const LayerEntry& other) const {
111 return compare(*this, other) == 0;
114 bool operator!=(const LayerEntry& other) const {
115 return compare(*this, other) != 0;
H A DRenderBufferCache.h52 * not enough space available. Adding a buffer can cause other buffer to
95 bool operator==(const RenderBufferEntry& other) const {
96 return compare(*this, other) == 0;
99 bool operator!=(const RenderBufferEntry& other) const {
100 return compare(*this, other) != 0;
/frameworks/base/core/java/android/net/
H A DNetworkPolicy.java137 // other value is missing or disabled; we win
141 // we're disabled or other limit is smaller; they win
156 final NetworkPolicy other = (NetworkPolicy) obj;
157 return cycleDay == other.cycleDay && warningBytes == other.warningBytes
158 && limitBytes == other.limitBytes
159 && lastWarningSnooze == other.lastWarningSnooze
160 && lastLimitSnooze == other.lastLimitSnooze && metered == other.metered
161 && inferred == other
[all...]
/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/services/java/com/android/server/content/
H A DSyncOperation.java121 SyncOperation(SyncOperation other) { argument
122 this.service = other.service;
123 this.account = other.account;
124 this.authority = other.authority;
125 this.userId = other.userId;
126 this.reason = other.reason;
127 this.syncSource = other.syncSource;
128 this.extras = new Bundle(other.extras);
129 this.expedited = other.expedited;
132 this.backoff = other
[all...]
/frameworks/base/core/java/android/view/
H A DSurfaceControl.java96 * be disabled, but other measures can take place, for instance the
117 * composited on top of each-other into the surface. A pre-multiplied
230 + "Set the other properties and make the surface visible within "
397 public PhysicalDisplayInfo(PhysicalDisplayInfo other) { argument
398 copyFrom(other);
406 public boolean equals(PhysicalDisplayInfo other) { argument
407 return other != null
408 && width == other.width
409 && height == other.height
410 && refreshRate == other
422 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/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/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java37 * to the view hierarchy. In other words, a custom view is free to report itself as
2089 * @param info The other info.
2205 * @param other The other instance.
2207 private void init(AccessibilityNodeInfo other) { argument
2208 mSealed = other.mSealed;
2209 mSourceNodeId = other.mSourceNodeId;
2210 mParentNodeId = other.mParentNodeId;
2211 mLabelForId = other.mLabelForId;
2212 mLabeledById = other
2570 obtain(RangeInfo other) argument
2687 obtain(CollectionInfo other) argument
2787 obtain(CollectionItemInfo other) argument
[all...]
/frameworks/native/libs/input/
H A DInput.cpp247 bool PointerCoords::operator==(const PointerCoords& other) const {
248 if (bits != other.bits) {
253 if (values[i] != other.values[i]) {
260 void PointerCoords::copyFrom(const PointerCoords& other) { argument
261 bits = other.bits;
264 values[i] = other.values[i];
271 bool PointerProperties::operator==(const PointerProperties& other) const {
272 return id == other.id
273 && toolType == other.toolType;
276 void PointerProperties::copyFrom(const PointerProperties& other) { argument
319 copyFrom(const MotionEvent* other, bool keepHistory) argument
[all...]
/frameworks/av/include/media/stagefright/foundation/
H A DAString.h69 bool operator==(const AString &other) const;
70 bool operator<(const AString &other) const;
71 bool operator>(const AString &other) const;
73 int compare(const AString &other) const;
/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/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();
/frameworks/base/location/java/android/location/
H A DGeofence.java171 Geofence other = (Geofence) obj;
172 if (mRadius != other.mRadius)
174 if (mLatitude != other.mLatitude)
176 if (mLongitude != other.mLongitude)
178 if (mType != other.mType)

Completed in 716 milliseconds

12345678