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)
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/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.java635 public boolean equals(Object otherObj) { argument
636 if (otherObj instanceof Receiver) {
637 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.java915 public boolean equals(Object otherObj) { argument
916 if (otherObj instanceof PendingIntent) {
917 return mTarget.asBinder().equals(((PendingIntent)otherObj)
/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java102 public boolean equals(Object otherObj) { argument
103 if (otherObj == null) {
107 Key other = (Key)otherObj;

Completed in 249 milliseconds