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

/frameworks/base/core/java/android/os/
H A DMessenger.java67 public boolean equals(Object otherObj) { argument
68 if (otherObj == null) {
72 return mTarget.asBinder().equals(((Messenger)otherObj)
H A DRemoteCallback.java71 public boolean equals(Object otherObj) { argument
72 if (otherObj == null) {
76 return mTarget.asBinder().equals(((RemoteCallback)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.cpp177 jobject otherObj) {
178 if (android_view_InputChannel_getNativeInputChannel(env, otherObj) != NULL) {
186 android_view_InputChannel_setNativeInputChannel(env, otherObj, nativeInputChannel);
249 static void android_view_InputChannel_nativeDup(JNIEnv* env, jobject obj, jobject otherObj) { argument
253 android_view_InputChannel_setNativeInputChannel(env, otherObj,
176 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/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.java523 public boolean equals(Object otherObj) { argument
524 if (otherObj instanceof Receiver) {
525 return mKey.equals(((Receiver)otherObj).mKey);
/frameworks/base/core/java/android/content/
H A DIntentSender.java287 public boolean equals(Object otherObj) { argument
288 if (otherObj instanceof IntentSender) {
289 return mTarget.asBinder().equals(((IntentSender)otherObj)
/frameworks/base/core/java/android/app/
H A DPendingIntent.java871 public boolean equals(Object otherObj) { argument
872 if (otherObj instanceof PendingIntent) {
873 return mTarget.asBinder().equals(((PendingIntent)otherObj)
/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java99 public boolean equals(Object otherObj) { argument
100 if (otherObj == null) {
104 Key other = (Key)otherObj;

Completed in 124 milliseconds