Searched defs:equals (Results 126 - 150 of 154) sorted by relevance

1234567

/frameworks/base/telephony/java/android/telephony/
H A DSignalStrength.java825 public boolean equals (Object o) { method in class:SignalStrength
H A DServiceState.java369 public boolean equals (Object o) { method in class:ServiceState
585 return (a == null) ? (b == null) : a.equals (b);
/frameworks/compile/slang/
H A Dslang_rs_export_type.cpp40 if (!ParentClass::equals(E)) \
840 bool RSExportType::equals(const RSExportable *E) const { function in class:slang::RSExportType
1112 bool RSExportPrimitiveType::equals(const RSExportable *E) const { function in class:slang::RSExportPrimitiveType
1174 bool RSExportPointerType::equals(const RSExportable *E) const { function in class:slang::RSExportPointerType
1177 ->getPointeeType()->equals(getPointeeType()));
1245 bool RSExportVectorType::equals(const RSExportable *E) const { function in class:slang::RSExportVectorType
1354 bool RSExportMatrixType::equals(const RSExportable *E) const { function in class:slang::RSExportMatrixType
1407 bool RSExportConstantArrayType::equals(const RSExportable *E) const { function in class:slang::RSExportConstantArrayType
1412 (getElementType()->equals(RHS->getElementType())));
1547 bool RSExportRecordType::equals(cons function in class:slang::RSExportRecordType
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothDevice.java529 public boolean equals(Object o) { method in class:BluetoothDevice
531 return mAddress.equals(((BluetoothDevice)o).getAddress());
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java772 && (locale == null || !locale.equals(delta.locale))) {
923 && (locale == null || !locale.equals(delta.locale))) {
1169 public boolean equals(Configuration that) { method in class:Configuration
1175 public boolean equals(Object that) { method in class:Configuration
1177 return equals((Configuration)that);
/frameworks/base/core/java/android/net/
H A DUri.java326 public boolean equals(Object o) { method in class:Uri
333 return toString().equals(other.toString());
338 * {@link #equals(Object)}.
1720 return (!"false".equals(flag) && !"0".equals(flag));
1748 if (scheme.equals(lowerScheme)) return this; // no change
2304 if ("file".equals(getScheme())) {
/frameworks/base/core/java/android/text/
H A DTextUtils.java479 public static boolean equals(CharSequence a, CharSequence b) { method in class:TextUtils
484 return a.equals(b);
1723 if (locale != null && !locale.equals(Locale.ROOT)) {
/frameworks/base/core/java/android/view/
H A DSurface.java40 private static final boolean HEADLESS = "1".equals(
788 public boolean equals(Object o) { method in class:Surface.PhysicalDisplayInfo
789 return o instanceof PhysicalDisplayInfo && equals((PhysicalDisplayInfo)o);
792 public boolean equals(PhysicalDisplayInfo other) { method in class:Surface.PhysicalDisplayInfo
866 if (mCompatibleMatrix == null || mOrigMatrix == null || mOrigMatrix.equals(matrix)) {
H A DViewDebug.java137 * @ViewDebug.FlagToString(mask = ENABLED_MASK, equals = ENABLED, name = "ENABLED"),
138 * @ViewDebug.FlagToString(mask = ENABLED_MASK, equals = DISABLED, name = "DISABLED"),
224 int equals(); method in interface:ViewDebug.FlagToString
804 return view.getClass().getName().equals(className) && view.hashCode() == hashCode;
1106 final boolean test = maskResult == flagMapping.equals();
H A DMotionEvent.java2803 if (!pp[0].equals(pp[1])) {
3075 if (symbolicName.equals(AXIS_SYMBOLIC_NAMES.valueAt(i))) {
3528 public boolean equals(Object other) { method in class:MotionEvent.PointerProperties
3530 return equals((PointerProperties)other);
3535 private boolean equals(PointerProperties other) { method in class:MotionEvent.PointerProperties
/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java806 public boolean equals(Object o) { method in class:RemoteViewsAdapter.RemoteViewsCacheKey
811 return other.filter.equals(filter) && other.widgetId == widgetId
H A DGridLayout.java1347 if (span.equals(key)) {
2014 public boolean equals(Object o) { method in class:GridLayout.LayoutParams
2020 if (!columnSpec.equals(that.columnSpec)) return false;
2021 if (!rowSpec.equals(that.rowSpec)) return false;
2114 *do* get added multiples times. So the length of index is equals to the number of
2290 public boolean equals(Object that) { method in class:GridLayout.Interval
2386 public boolean equals(Object that) { method in class:GridLayout.Spec
2396 if (!alignment.equals(spec.alignment)) {
2400 if (!span.equals(spec.span)) {
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java273 public boolean equals(Object obj) { method in class:Matrix
/frameworks/base/icu4j/java/android/icu/text/
H A DArabicShaping.java396 * Deshaping Mode: Perform the same function as the flag equals LAMALEF_END.
568 public boolean equals(Object rhs) { method in class:ArabicShaping
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DEventRecurrence.java453 * TODO: replace this with Arrays.equals() when the old parser goes away.
469 public boolean equals(Object obj) { method in class:EventRecurrence
481 (until == null ? er.until == null : until.equals(er.until)) &&
498 // We overrode equals, so we must override hashCode(). Nobody seems to need this though.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java76 public boolean equals(Object o) { method in class:SipPhone
80 return mProfile.getUriString().equals(that.mProfile.getUriString());
91 public boolean equals(SipPhone phone) { method in class:SipPhone
92 return getSipUri().equals(phone.getSipUri());
112 if (localUri.equals(mProfile.getUriString())) {
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java1261 * If <code>virtualDescendantId</code> equals to {@link View#NO_ID} the root
1733 public boolean equals(Object obj) { method in class:AccessibilityNodeInfoCompat
1748 } else if (!mInfo.equals(other.mInfo)) {
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java743 if (app.packageName.equals("system")) {
769 if ("system".equals(appPackageName)) {
854 if (nm.packageName.equals(ssp)) {
865 if (nm.packageName.equals(ssp)) {
907 public boolean equals(Object o) { method in class:ApplicationPackageManager.ResourceName
915 !packageName.equals(that.packageName) : that.packageName != null);
H A DFragment.java633 * Subclasses can not override equals().
635 @Override final public boolean equals(Object o) { method in class:Fragment
636 return super.equals(o);
1646 if (who.equals(mWho)) {
/frameworks/base/core/java/android/content/
H A DSyncStorageEngine.java476 if (authority.authority.equals(providerName)
526 if (authority.authority.equals(providerName)) {
585 if (account != null && !account.equals(accountInfo.accountAndUser.account)
590 if (providerName != null && !providerName.equals(authorityInfo.authority)) {
705 if (equals(existingExtras, extras)) {
729 if (equals(syncInfo.first, extras)) {
832 if (ainfo != null && ainfo.account.equals(account)
833 && ainfo.authority.equals(authority)
901 if (cur.account.equals(op.account)
902 && cur.authority.equals(o
1087 public static boolean equals(Bundle b1, Bundle b2) { method in class:SyncStorageEngine
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java754 * If <code>virtualDescendantId</code> equals to {@link View#NO_ID} the root
1784 public boolean equals(Object object) { method in class:AccessibilityNodeInfo
/frameworks/base/services/java/com/android/server/
H A DLocationManagerService.java246 if (Intent.ACTION_USER_SWITCHED.equals(action)) {
449 public boolean equals(Object otherObj) { method in class:LocationManagerService.Receiver
451 return mKey.equals(((Receiver)otherObj).mKey);
747 if (LocationManager.GPS_PROVIDER.equals(provider) ||
748 LocationManager.PASSIVE_PROVIDER.equals(provider)) {
751 } else if (LocationManager.NETWORK_PROVIDER.equals(provider) ||
752 LocationManager.FUSED_PROVIDER.equals(provider)) {
811 if (LocationManager.FUSED_PROVIDER.equals(name)) {
838 if (LocationManager.FUSED_PROVIDER.equals(name)) {
1153 if (packageName.equals(pk
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java104 // Also need to inherit toString(), equals().
218 public boolean equals(Object obj) { method in class:VCardEntry.NameData
227 return (TextUtils.equals(mFamily, nameData.mFamily)
228 && TextUtils.equals(mMiddle, nameData.mMiddle)
229 && TextUtils.equals(mGiven, nameData.mGiven)
230 && TextUtils.equals(mPrefix, nameData.mPrefix)
231 && TextUtils.equals(mSuffix, nameData.mSuffix)
232 && TextUtils.equals(mFormatted, nameData.mFormatted)
233 && TextUtils.equals(mPhoneticFamily, nameData.mPhoneticFamily)
234 && TextUtils.equals(mPhoneticMiddl
344 public boolean equals(Object obj) { method in class:VCardEntry.PhoneData
434 public boolean equals(Object obj) { method in class:VCardEntry.EmailData
641 public boolean equals(Object obj) { method in class:VCardEntry.PostalData
808 public boolean equals(Object obj) { method in class:VCardEntry.OrganizationData
911 public boolean equals(Object obj) { method in class:VCardEntry.ImData
1010 public boolean equals(Object obj) { method in class:VCardEntry.PhotoData
1091 public boolean equals(Object obj) { method in class:VCardEntry.NicknameData
1143 public boolean equals(Object obj) { method in class:VCardEntry.NoteData
1201 public boolean equals(Object obj) { method in class:VCardEntry.WebsiteData
1257 public boolean equals(Object obj) { method in class:VCardEntry.BirthdayData
1313 public boolean equals(Object obj) { method in class:VCardEntry.AnniversaryData
1388 public boolean equals(Object obj) { method in class:VCardEntry.SipData
1486 public boolean equals(Object obj) { method in class:VCardEntry.AndroidCustomData
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DFragment.java442 * Subclasses can not override equals().
444 @Override final public boolean equals(Object o) { method in class:Fragment
445 return super.equals(o);
1410 if (who.equals(mWho)) {
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1269 if (span.equals(key)) {
1947 public boolean equals(Object o) { method in class:GridLayout.LayoutParams
1953 if (!columnSpec.equals(that.columnSpec)) return false;
1954 if (!rowSpec.equals(that.rowSpec)) return false;
2047 *do* get added multiples times. So the length of index is equals to the number of
2222 public boolean equals(Object that) { method in class:GridLayout.Interval
2318 public boolean equals(Object that) { method in class:GridLayout.Spec
2328 if (!alignment.equals(spec.alignment)) {
2332 if (!span.equals(spec.span)) {

Completed in 2302 milliseconds

1234567