Searched refs:other (Results 251 - 275 of 648) sorted by relevance

<<11121314151617181920>>

/frameworks/native/libs/vr/libvrflinger/
H A Dacquired_buffer.h34 AcquiredBuffer(AcquiredBuffer&& other);
39 // |other| into this instance after RELEASING the current BufferConsumer and
40 // closing the acquire fence. After the move |other| is left in the empty
42 AcquiredBuffer& operator=(AcquiredBuffer&& other);
/frameworks/opt/bitmap/sample/src/com/example/bitmapsample/
H A DBitmapRequestKeyImpl.java49 final BitmapRequestKeyImpl other = (BitmapRequestKeyImpl) o;
50 return mUriString.equals(other.mUriString);
/frameworks/support/room/migration/src/main/java/androidx/room/migration/bundle/
H A DDatabaseBundle.java109 public boolean isSchemaEqual(DatabaseBundle other) { argument
111 other.getEntitiesByTableName());
/frameworks/base/core/java/android/app/servertransaction/
H A DClientTransaction.java226 final ClientTransaction other = (ClientTransaction) o;
227 return Objects.equals(mActivityCallbacks, other.mActivityCallbacks)
228 && Objects.equals(mLifecycleStateRequest, other.mLifecycleStateRequest)
229 && mClient == other.mClient
230 && mActivityToken == other.mActivityToken;
H A DPauseActivityItem.java151 final PauseActivityItem other = (PauseActivityItem) o;
152 return mFinished == other.mFinished && mUserLeaving == other.mUserLeaving
153 && mConfigChanges == other.mConfigChanges && mDontReport == other.mDontReport;
/frameworks/base/core/java/android/net/
H A DIpConfiguration.java158 IpConfiguration other = (IpConfiguration) o;
159 return this.ipAssignment == other.ipAssignment &&
160 this.proxySettings == other.proxySettings &&
161 Objects.equals(this.staticIpConfiguration, other.staticIpConfiguration) &&
162 Objects.equals(this.httpProxy, other.httpProxy);
H A DNetworkPolicy.java180 // other value is missing or disabled; we win
184 // we're disabled or other limit is smaller; they win
199 final NetworkPolicy other = (NetworkPolicy) obj;
200 return warningBytes == other.warningBytes
201 && limitBytes == other.limitBytes
202 && lastWarningSnooze == other.lastWarningSnooze
203 && lastLimitSnooze == other.lastLimitSnooze
204 && lastRapidSnooze == other.lastRapidSnooze
205 && metered == other.metered
206 && inferred == other
[all...]
/frameworks/base/core/java/android/print/
H A DPrintDocumentInfo.java248 PrintDocumentInfo other = (PrintDocumentInfo) obj;
249 if (!TextUtils.equals(mName, other.mName)) {
252 if (mContentType != other.mContentType) {
255 if (mPageCount != other.mPageCount) {
258 if (mDataSize != other.mDataSize) {
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityCdma.java180 public boolean equals(Object other) { argument
181 if (this == other) {
185 if (!(other instanceof CellIdentityCdma)) {
189 CellIdentityCdma o = (CellIdentityCdma) other;
196 && super.equals(other);
H A DCellIdentityTdscdma.java150 public boolean equals(Object other) { argument
151 if (this == other) {
155 if (!(other instanceof CellIdentityTdscdma)) {
159 CellIdentityTdscdma o = (CellIdentityTdscdma) other;
165 && super.equals(other);
H A DCellIdentityWcdma.java193 public boolean equals(Object other) { argument
194 if (this == other) {
198 if (!(other instanceof CellIdentityWcdma)) {
202 CellIdentityWcdma o = (CellIdentityWcdma) other;
209 && super.equals(other);
/frameworks/native/services/inputflinger/
H A DInputListener.h45 NotifyConfigurationChangedArgs(const NotifyConfigurationChangedArgs& other);
72 NotifyKeyArgs(const NotifyKeyArgs& other);
96 * This can only be compared to other device timestamps from the same device.
116 NotifyMotionArgs(const NotifyMotionArgs& other);
136 NotifySwitchArgs(const NotifySwitchArgs& other);
154 NotifyDeviceResetArgs(const NotifyDeviceResetArgs& other);
/frameworks/support/content/src/main/java/androidx/contentpager/content/
H A DQuery.java74 // NOTE: We omit mProjection and other details from ID. If a client wishes
168 Query other = (Query) obj;
170 return mId == other.mId
171 && mUri.equals(other.mUri)
172 && mOffset == other.mOffset
173 && mLimit == other.mLimit;
/frameworks/support/tv-provider/src/main/java/androidx/tvprovider/media/tv/
H A DWatchNextProgram.java131 public boolean equals(Object other) { argument
132 if (!(other instanceof WatchNextProgram)) {
135 return mValues.equals(((WatchNextProgram) other).mValues);
139 * Indicates whether some other WatchNextProgram has any set attribute that is different from
233 * @param other The Program you're copying from.
235 public Builder(WatchNextProgram other) { argument
236 mValues = new ContentValues(other.mValues);
H A DProgram.java133 public boolean equals(Object other) { argument
134 if (!(other instanceof Program)) {
137 return mValues.equals(((Program) other).mValues);
141 * @param other The program you're comparing to.
145 public int compareTo(@NonNull Program other) { argument
147 other.mValues.getAsLong(Programs.COLUMN_START_TIME_UTC_MILLIS));
235 * @param other The Program you're copying from.
237 public Builder(Program other) { argument
238 mValues = new ContentValues(other.mValues);
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dvariant.h149 Union(const Union& other, std::int32_t index) { argument
151 new (&first_) Type(other.first_);
153 Union(Union&& other, std::int32_t index) { argument
155 new (&first_) Type(std::move(other.first_));
252 Union(const Union& other, std::int32_t index) { argument
254 new (&first_) First(other.first_);
256 new (&rest_) Union<Rest...>(other.rest_, index - 1);
258 Union(Union&& other, std::int32_t index) { argument
260 new (&first_) First(std::move(other.first_));
262 new (&rest_) Union<Rest...>(std::move(other
448 Variant(const Variant& other) argument
450 Variant(Variant&& other) argument
461 Variant(const Variant<OtherTypes...>& other) argument
467 Variant(Variant<OtherTypes...>&& other) argument
471 operator =(const Variant& other) argument
475 operator =(Variant&& other) argument
513 operator =(const Variant<OtherTypes...>& other) argument
518 operator =(Variant<OtherTypes...>&& other) argument
[all...]
/frameworks/base/libs/hwui/
H A DClipArea.cpp57 bool TransformedRectangle::canSimplyIntersectWith(const TransformedRectangle& other) const {
58 return mTransform == other.mTransform;
61 void TransformedRectangle::intersectWith(const TransformedRectangle& other) { argument
62 mBounds.doIntersect(other.mBounds);
253 // existing clipping information from the other modes.
427 SkRegion other; local
434 other.setRect(resultClip.toSkIRect());
438 other.setPath(transformedRect, createViewportRegion());
444 other = transformedList.convertToRegion(createViewportRegion());
448 other
478 const RectangleList& other = getRectList(recordedClip); local
517 SkRegion other; local
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DAString.cpp147 bool AString::operator==(const AString &other) const {
148 return mSize == other.mSize && !memcmp(mData, other.mData, mSize);
311 bool AString::operator<(const AString &other) const {
312 return compare(other) < 0;
315 bool AString::operator>(const AString &other) const {
316 return compare(other) > 0;
319 int AString::compare(const AString &other) const {
320 return strcmp(mData, other.mData);
323 int AString::compareIgnoreCase(const AString &other) cons
[all...]
/frameworks/base/core/java/android/util/
H A DTypedValue.java170 * This tells you how to interpret the other fields in the object. */
408 * @param base The base value of this fraction. In other words, a
410 * @param pbase The parent base value of this fraction. In other
432 * @param base The base value of this fraction. In other words, a
434 * @param pbase The parent base value of this fraction. In other
512 public void setTo(TypedValue other) argument
514 type = other.type;
515 string = other.string;
516 data = other.data;
517 assetCookie = other
[all...]
/frameworks/base/libs/input/
H A DSpriteController.h42 inline bool operator== (const SpriteTransformationMatrix& other) { argument
43 return dsdx == other.dsdx
44 && dtdx == other.dtdx
45 && dsdy == other.dsdy
46 && dtdy == other.dtdy;
49 inline bool operator!= (const SpriteTransformationMatrix& other) { argument
50 return !(*this == other);
87 * A sprite is a simple graphical object that is displayed on-screen above other layers.
135 * by other components.
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbAlsaDevice.java282 UsbAlsaDevice other = (UsbAlsaDevice) obj;
283 return (mCardNum == other.mCardNum
284 && mDeviceNum == other.mDeviceNum
285 && mHasOutput == other.mHasOutput
286 && mHasInput == other.mHasInput
287 && mIsInputHeadset == other.mIsInputHeadset
288 && mIsOutputHeadset == other.mIsOutputHeadset);
/frameworks/support/room/runtime/src/main/java/androidx/room/
H A DRoomSQLiteQuery.java269 * @param other The other query, which holds the arguments to be copied.
271 public void copyArgumentsFrom(RoomSQLiteQuery other) { argument
272 int argCount = other.getArgCount() + 1; // +1 for the binding offsets
273 System.arraycopy(other.mBindingTypes, 0, mBindingTypes, 0, argCount);
274 System.arraycopy(other.mLongBindings, 0, mLongBindings, 0, argCount);
275 System.arraycopy(other.mStringBindings, 0, mStringBindings, 0, argCount);
276 System.arraycopy(other.mBlobBindings, 0, mBlobBindings, 0, argCount);
277 System.arraycopy(other.mDoubleBindings, 0, mDoubleBindings, 0, argCount);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkAgentInfo.java123 // enclosed socket factory and connection pool. Avoid creating other Network objects.
175 LingerTimer other = (LingerTimer) o;
176 return (request.requestId == other.request.requestId) && (expiryMs == other.expiryMs);
181 public int compareTo(LingerTimer other) { argument
182 return (expiryMs != other.expiryMs) ?
183 Long.compare(expiryMs, other.expiryMs) :
184 Integer.compare(request.requestId, other.request.requestId);
219 // it depends on the state of other networks and requests, which only ConnectivityService knows.
316 // Should only happen if the requestId wraps. If that happens lots of other thing
620 compareTo(NetworkAgentInfo other) argument
[all...]
/frameworks/av/camera/ndk/impl/
H A DACameraMetadata.h46 ACameraMetadata(const ACameraMetadata& other) : argument
47 mData(other.mData), mType(other.mType) {};
87 // exact copy of internal data type but they do not inherit from each other
/frameworks/base/core/java/android/content/pm/
H A DVerifierDeviceIdentity.java197 public boolean equals(Object other) { argument
198 if (!(other instanceof VerifierDeviceIdentity)) {
202 final VerifierDeviceIdentity o = (VerifierDeviceIdentity) other;

Completed in 1531 milliseconds

<<11121314151617181920>>