Searched refs:otherObj (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/os/
H A DMessenger.java74 public boolean equals(Object otherObj) { argument
75 if (otherObj == null) {
79 return mTarget.asBinder().equals(((Messenger)otherObj)
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DListTestCaseNames.java84 public boolean equals(Object otherObj) { argument
85 if (otherObj instanceof TestDescriptor) {
86 TestDescriptor otherDesc = (TestDescriptor)otherObj;
/frameworks/base/core/jni/
H A Dandroid_view_InputChannel.cpp179 jobject otherObj) {
180 if (android_view_InputChannel_getNativeInputChannel(env, otherObj) != NULL) {
188 android_view_InputChannel_setNativeInputChannel(env, otherObj, nativeInputChannel);
251 static void android_view_InputChannel_nativeDup(JNIEnv* env, jobject obj, jobject otherObj) { argument
255 android_view_InputChannel_setNativeInputChannel(env, otherObj,
178 android_view_InputChannel_nativeTransferTo(JNIEnv* env, jobject obj, jobject otherObj) argument
/frameworks/base/core/java/android/view/
H A DWindowId.java166 public boolean equals(Object otherObj) { argument
167 if (otherObj instanceof WindowId) {
168 return mToken.asBinder().equals(((WindowId) otherObj)
/frameworks/base/services/core/java/com/android/server/
H A DCountryDetectorService.java64 public boolean equals(Object otherObj) { argument
65 if (otherObj instanceof Receiver) {
66 return mKey.equals(((Receiver) otherObj).mKey);
H A DLocationManagerService.java693 public boolean equals(Object otherObj) { argument
694 if (otherObj instanceof Receiver) {
695 return mKey.equals(((Receiver)otherObj).mKey);
/frameworks/base/core/java/android/content/
H A DIntentSender.java284 public boolean equals(Object otherObj) { argument
285 if (otherObj instanceof IntentSender) {
286 return mTarget.asBinder().equals(((IntentSender)otherObj)
/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java113 public boolean equals(Object otherObj) { argument
114 if (otherObj == null) {
118 Key other = (Key)otherObj;
/frameworks/base/core/java/android/app/
H A DPendingIntent.java1019 public boolean equals(Object otherObj) { argument
1020 if (otherObj instanceof PendingIntent) {
1021 return mTarget.asBinder().equals(((PendingIntent)otherObj)
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java1709 public boolean equals(Object otherObj) { argument
1710 if (this == otherObj) {
1712 } else if (otherObj == null || getClass() != otherObj.getClass()) {
1715 PnoNetwork other = (PnoNetwork) otherObj;

Completed in 327 milliseconds