/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | ScanResultMatchInfo.java | 127 public boolean equals(Object otherObj) { in equals() argument 128 if (this == otherObj) { in equals() 130 } else if (!(otherObj instanceof ScanResultMatchInfo)) { in equals() 133 ScanResultMatchInfo other = (ScanResultMatchInfo) otherObj; in equals()
|
D | WifiNative.java | 2446 public boolean equals(Object otherObj) { in equals() argument 2447 if (this == otherObj) { in equals() 2449 } else if (otherObj == null || getClass() != otherObj.getClass()) { in equals() 2452 HiddenNetwork other = (HiddenNetwork) otherObj; in equals() 2492 public boolean equals(Object otherObj) { in equals() argument 2493 if (this == otherObj) { in equals() 2495 } else if (otherObj == null || getClass() != otherObj.getClass()) { in equals() 2498 PnoNetwork other = (PnoNetwork) otherObj; in equals()
|
/frameworks/base/core/java/android/os/ |
D | Messenger.java | 74 public boolean equals(Object otherObj) { in equals() argument 75 if (otherObj == null) { in equals() 79 return mTarget.asBinder().equals(((Messenger)otherObj) in equals()
|
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/ |
D | ListTestCaseNames.java | 84 public boolean equals(Object otherObj) { in equals() argument 85 if (otherObj instanceof TestDescriptor) { in equals() 86 TestDescriptor otherDesc = (TestDescriptor)otherObj; in equals()
|
/frameworks/base/core/jni/ |
D | android_view_InputChannel.cpp | 179 jobject otherObj) { in android_view_InputChannel_nativeTransferTo() argument 180 if (android_view_InputChannel_getNativeInputChannel(env, otherObj) != NULL) { in android_view_InputChannel_nativeTransferTo() 188 android_view_InputChannel_setNativeInputChannel(env, otherObj, nativeInputChannel); in android_view_InputChannel_nativeTransferTo() 242 static void android_view_InputChannel_nativeDup(JNIEnv* env, jobject obj, jobject otherObj) { in android_view_InputChannel_nativeDup() argument 246 android_view_InputChannel_setNativeInputChannel(env, otherObj, in android_view_InputChannel_nativeDup()
|
/frameworks/base/core/java/android/view/ |
D | WindowId.java | 168 public boolean equals(@Nullable Object otherObj) { in equals() argument 169 if (otherObj instanceof WindowId) { in equals() 170 return mToken.asBinder().equals(((WindowId) otherObj).mToken.asBinder()); in equals()
|
/frameworks/base/core/java/android/content/ |
D | IntentSender.java | 287 public boolean equals(Object otherObj) { in equals() argument 288 if (otherObj instanceof IntentSender) { in equals() 289 return mTarget.asBinder().equals(((IntentSender)otherObj) in equals()
|
/frameworks/base/services/core/java/com/android/server/ |
D | CountryDetectorService.java | 73 public boolean equals(Object otherObj) { in equals() argument 74 if (otherObj instanceof Receiver) { in equals() 75 return mKey.equals(((Receiver) otherObj).mKey); in equals()
|
D | LocationManagerService.java | 1405 public boolean equals(Object otherObj) { in equals() argument 1406 return (otherObj instanceof Receiver) && mKey.equals(((Receiver) otherObj).mKey); in equals()
|
/frameworks/base/wifi/java/android/net/wifi/ |
D | ScanResult.java | 286 public boolean equals(Object otherObj) { in equals() argument 287 if (this == otherObj) { in equals() 290 if (!(otherObj instanceof RadioChainInfo)) { in equals() 293 RadioChainInfo other = (RadioChainInfo) otherObj; in equals()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | PendingIntentRecord.java | 128 public boolean equals(Object otherObj) { in equals() argument 129 if (otherObj == null) { in equals() 133 Key other = (Key)otherObj; in equals()
|
/frameworks/base/core/java/android/app/ |
D | PendingIntent.java | 1165 public boolean equals(Object otherObj) { in equals() argument 1166 if (otherObj instanceof PendingIntent) { in equals() 1167 return mTarget.asBinder().equals(((PendingIntent)otherObj) in equals()
|