Searched defs:equals (Results 1 - 25 of 154) sorted by path

1234567

/frameworks/base/core/java/android/accounts/
H A DAccount.java25 * {@link Parcelable} and also overrides {@link #equals} and {@link #hashCode}, making it
32 public boolean equals(Object o) { method in class:Account
36 return name.equals(other.name) && type.equals(other.type);
H A DAccountAndUser.java33 public boolean equals(Object o) { method in class:AccountAndUser
37 return this.account.equals(other.account)
H A DAuthenticatorDescription.java110 public boolean equals(Object o) { method in class:AuthenticatorDescription
114 return type.equals(other.type);
/frameworks/base/core/java/android/app/
H A DActivityThread.java230 public boolean equals(Object o) { method in class:ActivityThread.ProviderKey
1519 if (Configuration.EMPTY.equals(overrideConfiguration)) {
1540 public boolean equals(Object obj) { method in class:ActivityThread.ResourcesKey
1545 if (!mResDir.equals(peer.mResDir)) {
1555 if (!mOverrideConfiguration.equals(peer.mOverrideConfiguration)) {
3836 !mResCompatibilityInfo.equals(compat))) {
4785 if (context.getPackageName().equals(ai.packageName)) {
4788 mInitialApplication.getPackageName().equals(ai.packageName)) {
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)) {
H A DPendingIntent.java812 * objects but whose equals() method identifies them as being the same
816 public boolean equals(Object otherObj) { method in class:PendingIntent
818 return mTarget.asBinder().equals(((PendingIntent)otherObj)
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothClass.java66 public boolean equals(Object o) { method in class:BluetoothClass
H A DBluetoothDevice.java529 public boolean equals(Object o) { method in class:BluetoothDevice
531 return mAddress.equals(((BluetoothDevice)o).getAddress());
H A DBluetoothHealthAppConfiguration.java68 public boolean equals(Object o) { method in class:BluetoothHealthAppConfiguration
72 return mName.equals(config.getName()) &&
/frameworks/base/core/java/android/content/
H A DComponentName.java186 public boolean equals(Object obj) { method in class:ComponentName
192 return mPackage.equals(other.mPackage)
193 && mClass.equals(other.mClass);
H A DContentValues.java77 public boolean equals(Object object) { method in class:ContentValues
81 return mValues.equals(((ContentValues) object).mValues);
H A DIntent.java4029 if ("content".equals(mData.getScheme())) {
6198 * {@link #equals equals()} and {@link #hashCode hashCode()} methods as
6222 public boolean equals(Object obj) { method in class:Intent.FilterComparison
6253 if (!mAction.equals(other.mAction)) {
6257 if (!other.mAction.equals(mAction)) {
6264 if (!mData.equals(other.mData)) {
6268 if (!other.mData.equals(mData)) {
6275 if (!mType.equals(other.mType)) {
6279 if (!other.mType.equals(mTyp
[all...]
H A DIntentSender.java287 public boolean equals(Object otherObj) { method in class:IntentSender
289 return mTarget.asBinder().equals(((IntentSender)otherObj)
H A DPeriodicSync.java68 public boolean equals(Object o) { method in class:PeriodicSync
79 return account.equals(other.account)
80 && authority.equals(other.authority)
82 && SyncStorageEngine.equals(extras, other.extras);
H A DSyncAdapterType.java24 * Value type that represents a SyncAdapterType. This object overrides {@link #equals} and
155 public boolean equals(Object o) { method in class:SyncAdapterType
160 return authority.equals(other.authority) && accountType.equals(other.accountType);
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/content/pm/
H A DContainerEncryptionParams.java195 public boolean equals(Object o) { method in class:ContainerEncryptionParams
214 if (!mEncryptionAlgorithm.equals(other.mEncryptionAlgorithm)
215 || !mMacAlgorithm.equals(other.mMacAlgorithm)) {
225 if (!Arrays.equals(mEncryptionSpec.getIV(), other.mEncryptionSpec.getIV())
226 || !Arrays.equals(mMacTag, other.mMacTag) || (mMacSpec != other.mMacSpec)) {
246 if (!keyFormat.equals(key2.getFormat())) {
250 if (!Arrays.equals(key1.getEncoded(), key2.getEncoded())) {
H A DManifestDigest.java81 public boolean equals(Object o) { method in class:ManifestDigest
88 return this == other || Arrays.equals(mDigest, other.mDigest);
H A DPackageCleanItem.java35 public boolean equals(Object obj) { method in class:PackageCleanItem
42 return userId == other.userId && packageName.equals(other.packageName)
H A DSignature.java158 public boolean equals(Object obj) { method in class:Signature
162 return this == other || Arrays.equals(mSignature, other.mSignature);
H A DVerificationParams.java117 public boolean equals(Object o) { method in class:VerificationParams
132 } else if (!mVerificationURI.equals(other.mVerificationURI)) {
140 } else if (!mOriginatingURI.equals(other.mOriginatingURI)) {
148 } else if (!mReferrer.equals(other.mReferrer)) {
160 } else if (!mManifestDigest.equals(other.mManifestDigest)) {
H A DVerifierDeviceIdentity.java194 public boolean equals(Object other) { method in class:VerifierDeviceIdentity
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java520 public boolean equals(Object o) { method in class:CompatibilityInfo
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);

Completed in 1778 milliseconds

1234567