Searched refs:other (Results 76 - 100 of 197) sorted by relevance

12345678

/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityWcdma.java127 public boolean equals(Object other) { argument
128 if (super.equals(other)) {
130 CellIdentityWcdma o = (CellIdentityWcdma)other;
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;
H A DCellIdentityCdma.java146 public boolean equals(Object other) { argument
147 if (super.equals(other)) {
149 CellIdentityCdma o = (CellIdentityCdma)other;
H A DCellIdentityLte.java126 public boolean equals(Object other) { argument
127 if (super.equals(other)) {
129 CellIdentityLte o = (CellIdentityLte)other;
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h90 uint8_t other() const { function in class:mcld::LDSymbol
92 return m_pResolveInfo->other();
97 return m_pResolveInfo->other();
/frameworks/base/libs/hwui/
H A DGradientCache.h68 bool operator==(const GradientCacheEntry& other) const {
69 return compare(*this, other) == 0;
72 bool operator!=(const GradientCacheEntry& other) const {
73 return compare(*this, other) != 0;
H A DDeferredDisplayList.h75 OpStatePair(const OpStatePair& other) argument
76 : op(other.op), state(other.state) {}
100 kOpBatch_Count, // Add other batch ids before this
/frameworks/base/libs/hwui/font/
H A DFont.h57 bool operator==(const FontDescription& other) const {
58 return compare(*this, other) == 0;
61 bool operator!=(const FontDescription& other) const {
62 return compare(*this, other) != 0;
H A DFontUtil.h35 # error TEXTURE_BORDER_SIZE other than 1 is not currently supported
/frameworks/native/opengl/libagl/
H A DTokenizer.h33 Tokenizer(const Tokenizer& other);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsBroadcastUndelivered.java137 // to state machine which will find the other pieces to broadcast
214 SmsReferenceKey other = (SmsReferenceKey) o;
215 return other.mAddress.equals(mAddress)
216 && (other.mReferenceNumber == mReferenceNumber)
217 && (other.mMessageCount == mMessageCount);
/frameworks/base/core/java/android/view/
H A DMotionEvent.java27 * Motion events may hold either absolute or relative movements and other data,
34 * down or up. The axis values describe the position and other movement properties.
43 * other objects that generate movement traces are referred to as <em>pointers</em>.
56 * The MotionEvent class provides many methods to query the position and other properties of
86 * they are still distinct from any other coordinates reported in prior motion events.
478 * by a finger or other tool. The value is normalized to a range from
1237 * such as for a trackball or other non-pointing device.
1423 * zero indicates that the event didn't come from a physical device; other
1463 * zero indicates that the event didn't come from a physical device; other
1515 * zero indicates that the event didn't come from a physical device; other
1611 obtain(MotionEvent other) argument
1625 obtainNoHistory(MotionEvent other) argument
3185 PointerCoords(PointerCoords other) argument
3316 copyFrom(PointerCoords other) argument
3478 PointerProperties(PointerProperties other) argument
3520 copyFrom(PointerProperties other) argument
3526 equals(Object other) argument
3533 equals(PointerProperties other) argument
[all...]
H A DViewTreeObserver.java265 InternalInsetsInfo other = (InternalInsetsInfo)o;
266 return mTouchableInsets == other.mTouchableInsets &&
267 contentInsets.equals(other.contentInsets) &&
268 visibleInsets.equals(other.visibleInsets) &&
269 touchableRegion.equals(other.touchableRegion);
272 void set(InternalInsetsInfo other) { argument
273 contentInsets.set(other.contentInsets);
274 visibleInsets.set(other.visibleInsets);
275 touchableRegion.set(other.touchableRegion);
276 mTouchableInsets = other
[all...]
H A DPointerIcon.java352 public boolean equals(Object other) { argument
353 if (this == other) {
357 if (other == null || !(other instanceof PointerIcon)) {
361 PointerIcon otherIcon = (PointerIcon) other;
/frameworks/base/media/mca/filterpacks/native/base/
H A Dgeometry.h41 Point operator+(const Point& other) const;
42 Point operator-(const Point& other) const;
/frameworks/base/core/java/android/print/
H A DPrintAttributes.java204 PrintAttributes other = (PrintAttributes) obj;
205 if (mColorMode != other.mColorMode) {
209 if (other.mMinMargins != null) {
212 } else if (!mMinMargins.equals(other.mMinMargins)) {
216 if (other.mMediaSize != null) {
219 } else if (!mMediaSize.equals(other.mMediaSize)) {
223 if (other.mResolution != null) {
226 } else if (!mResolution.equals(other.mResolution)) {
261 public void copyFrom(PrintAttributes other) { argument
262 mMediaSize = other
[all...]
/frameworks/base/core/java/android/text/
H A DSpannableStringInternal.java366 Spanned other = (Spanned) o;
368 Object[] otherSpans = other.getSpans(0, other.length(), Object.class);
374 if (other != otherSpan ||
375 getSpanStart(thisSpan) != other.getSpanStart(otherSpan) ||
376 getSpanEnd(thisSpan) != other.getSpanEnd(otherSpan) ||
377 getSpanFlags(thisSpan) != other.getSpanFlags(otherSpan)) {
381 getSpanStart(thisSpan) != other.getSpanStart(otherSpan) ||
382 getSpanEnd(thisSpan) != other.getSpanEnd(otherSpan) ||
383 getSpanFlags(thisSpan) != other
[all...]
/frameworks/native/include/input/
H A DInput.h201 bool operator==(const PointerCoords& other) const;
202 inline bool operator!=(const PointerCoords& other) const {
203 return !(*this == other);
206 void copyFrom(const PointerCoords& other);
227 bool operator==(const PointerProperties& other) const;
228 inline bool operator!=(const PointerProperties& other) const {
229 return !(*this == other);
232 void copyFrom(const PointerProperties& other);
518 void copyFrom(const MotionEvent* other, bool keepHistory);
/frameworks/base/core/jni/android/graphics/
H A DTextLayoutCache.h74 TextLayoutCacheKey(const TextLayoutCacheKey& other);
85 bool operator==(const TextLayoutCacheKey& other) const {
86 return compare(*this, other) == 0;
89 bool operator!=(const TextLayoutCacheKey& other) const {
90 return compare(*this, other) != 0;
/frameworks/base/core/java/android/content/
H A DSyncAdapterType.java158 final SyncAdapterType other = (SyncAdapterType)o;
160 return authority.equals(other.authority) && accountType.equals(other.accountType);
/frameworks/base/core/java/android/content/pm/
H A DSignature.java163 Signature other = (Signature)obj;
164 return this == other || Arrays.equals(mSignature, other.mSignature);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCellBroadcastHandler.java146 // Try to find other pages of the same message
217 SmsCbConcatInfo other = (SmsCbConcatInfo)obj;
222 return mHeader.getSerialNumber() == other.mHeader.getSerialNumber()
223 && mLocation.equals(other.mLocation);

Completed in 490 milliseconds

12345678