Searched refs:otherObj (Results 1 - 9 of 9) 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.java686 public boolean equals(Object otherObj) { argument
687 if (otherObj instanceof Receiver) {
688 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.java112 public boolean equals(Object otherObj) { argument
113 if (otherObj == null) {
117 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)

Completed in 517 milliseconds