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

1234567891011>>

/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DDeviceDescriptor.cpp47 bool DeviceDescriptor::equals(const sp<DeviceDescriptor>& other) const function in class:android::DeviceDescriptor
82 if (item->equals(itemAt(i))) {
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityServiceInfo.java461 if (!TAG_ACCESSIBILITY_SERVICE.equals(nodeName)) {
703 public boolean equals(Object obj) { method in class:AccessibilityServiceInfo
718 } else if (!mId.equals(other.mId)) {
/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.java245 public boolean equals(Object o) { method in class:ActivityThread.ProviderKey
248 return Objects.equals(authority, other.authority) && userId == other.userId;
809 !appInfo.packageName.equals(pi.applicationInfo.processName));
1832 if (mSystemThread && "android".equals(aInfo.packageName)) {
4526 final boolean is24Hr = "24".equals(mCoreSettings.getString(Settings.System.TIME_12_24));
5119 if (context.getPackageName().equals(ai.packageName)) {
5122 mInitialApplication.getPackageName().equals(ai.packageName)) {
H A DApplicationPackageManager.java323 if (runtimeIsa.equals(secondaryIsa)) {
1028 if (app.packageName.equals("system")) {
1058 if ("system".equals(appPackageName)) {
1174 if (nm.packageName.equals(ssp)) {
1182 if (nm.packageName.equals(ssp)) {
1223 public boolean equals(Object o) { method in class:ApplicationPackageManager.ResourceName
1231 !packageName.equals(that.packageName) : that.packageName != null);
1391 if (!"file".equals(packageURI.getScheme())) {
1573 if (VolumeInfo.ID_PRIVATE_INTERNAL.equals(vol.id)) {
1606 if (Objects.equals(vo
[all...]
H A DFragment.java661 * Subclasses can not override equals().
663 @Override final public boolean equals(Object o) { method in class:Fragment
664 return super.equals(o);
2165 if (who.equals(mWho)) {
H A DNotificationManager.java594 public boolean equals(Object o) { method in class:NotificationManager.Policy
H A DPendingIntent.java984 * objects but whose equals() method identifies them as being the same
988 public boolean equals(Object otherObj) { method in class:PendingIntent
990 return mTarget.asBinder().equals(((PendingIntent)otherObj)
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAudioConfig.java42 public boolean equals(Object o) { method in class:BluetoothAudioConfig
H A DBluetoothClass.java66 public boolean equals(Object o) { method in class:BluetoothClass
H A DBluetoothDevice.java656 public boolean equals(Object o) { method in class:BluetoothDevice
658 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()) &&
H A DBluetoothMasInstance.java37 public boolean equals(Object o) { method in class:BluetoothMasInstance
/frameworks/base/core/java/android/bluetooth/le/
H A DAdvertiseData.java113 public boolean equals(Object obj) { method in class:AdvertiseData
121 return Objects.equals(mServiceUuids, other.mServiceUuids) &&
122 BluetoothLeUtils.equals(mManufacturerSpecificData, other.mManufacturerSpecificData) &&
123 BluetoothLeUtils.equals(mServiceData, other.mServiceData) &&
H A DBluetoothLeUtils.java82 static boolean equals(SparseArray<byte[]> array, SparseArray<byte[]> otherArray) { method in class:BluetoothLeUtils
96 !Arrays.equals(array.valueAt(i), otherArray.valueAt(i))) {
106 static <T> boolean equals(Map<T, byte[]> map, Map<T, byte[]> otherMap) { method in class:BluetoothLeUtils
117 if (!keys.equals(otherMap.keySet())) {
H A DScanFilter.java278 && (device == null || !mDeviceAddress.equals(device.getAddress()))) {
292 if (mDeviceName != null && !mDeviceName.equals(scanRecord.getDeviceName())) {
343 return uuid.equals(data);
394 public boolean equals(Object obj) { method in class:ScanFilter
402 return Objects.equals(mDeviceName, other.mDeviceName) &&
403 Objects.equals(mDeviceAddress, other.mDeviceAddress) &&
410 Objects.equals(mServiceUuid, other.mServiceUuid) &&
411 Objects.equals(mServiceUuidMask, other.mServiceUuidMask);
419 return EMPTY.equals(this);
H A DScanResult.java132 public boolean equals(Object obj) { method in class:ScanResult
140 return Objects.equals(mDevice, other.mDevice) && (mRssi == other.mRssi) &&
141 Objects.equals(mScanRecord, other.mScanRecord)
/frameworks/base/core/java/android/content/
H A DComponentName.java285 public boolean equals(Object obj) { method in class:ComponentName
291 return mPackage.equals(other.mPackage)
292 && 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.java5071 if ("content".equals(mData.getScheme())) {
7331 * {@link #equals equals()} and {@link #hashCode hashCode()} methods as
7355 public boolean equals(Object obj) { method in class:Intent.FilterComparison
7384 if (!Objects.equals(this.mAction, other.mAction)) return false;
7385 if (!Objects.equals(this.mData, other.mData)) return false;
7386 if (!Objects.equals(this.mType, other.mType)) return false;
7387 if (!Objects.equals(this.mPackage, other.mPackage)) return false;
7388 if (!Objects.equals(this.mComponent, other.mComponent)) return false;
7389 if (!Objects.equals(thi
[all...]
H A DIntentSender.java287 public boolean equals(Object otherObj) { method in class:IntentSender
289 return mTarget.asBinder().equals(((IntentSender)otherObj)
H A DPeriodicSync.java118 public boolean equals(Object o) { method in class:PeriodicSync
126 return account.equals(other.account)
127 && authority.equals(other.authority)
147 if (!b1.get(key).equals(b2.get(key))) {
H A DRestrictionEntry.java455 public boolean equals(Object o) { method in class:RestrictionEntry
459 if (mType != other.mType || !mKey.equals(other.mKey)) {
464 && Objects.equals(mCurrentValue, other.mCurrentValue)) {
469 && Arrays.equals(mCurrentValues, other.mCurrentValues)) {
474 && Arrays.equals(mRestrictions, other.mRestrictions)) {

Completed in 8358 milliseconds

1234567891011>>