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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DScanResultMatchInfo.java88 public boolean equals(Object otherObj) { argument
89 if (this == otherObj) {
91 } else if (!(otherObj instanceof ScanResultMatchInfo)) {
94 ScanResultMatchInfo other = (ScanResultMatchInfo) otherObj;
H A DWifiNative.java2011 public boolean equals(Object otherObj) { argument
2012 if (this == otherObj) {
2014 } else if (otherObj == null || getClass() != otherObj.getClass()) {
2017 HiddenNetwork other = (HiddenNetwork) otherObj;
2056 public boolean equals(Object otherObj) { argument
2057 if (this == otherObj) {
2059 } else if (otherObj == null || getClass() != otherObj.getClass()) {
2062 PnoNetwork other = (PnoNetwork) otherObj;
[all...]
/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.cpp180 jobject otherObj) {
181 if (android_view_InputChannel_getNativeInputChannel(env, otherObj) != NULL) {
189 android_view_InputChannel_setNativeInputChannel(env, otherObj, nativeInputChannel);
252 static void android_view_InputChannel_nativeDup(JNIEnv* env, jobject obj, jobject otherObj) { argument
256 android_view_InputChannel_setNativeInputChannel(env, otherObj,
179 android_view_InputChannel_nativeTransferTo(JNIEnv* env, jobject obj, jobject otherObj) argument
/frameworks/base/core/java/android/view/
H A DWindowId.java168 public boolean equals(@Nullable Object otherObj) { argument
169 if (otherObj instanceof WindowId) {
170 return mToken.asBinder().equals(((WindowId) otherObj).mToken.asBinder());
/frameworks/base/services/core/java/com/android/server/
H A DCountryDetectorService.java65 public boolean equals(Object otherObj) { argument
66 if (otherObj instanceof Receiver) {
67 return mKey.equals(((Receiver) otherObj).mKey);
H A DLocationManagerService.java822 public boolean equals(Object otherObj) { argument
823 return (otherObj instanceof Receiver) && mKey.equals(((Receiver) otherObj).mKey);
/frameworks/base/core/java/android/content/
H A DIntentSender.java285 public boolean equals(Object otherObj) { argument
286 if (otherObj instanceof IntentSender) {
287 return mTarget.asBinder().equals(((IntentSender)otherObj)
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java248 public boolean equals(Object otherObj) { argument
249 if (this == otherObj) {
252 if (!(otherObj instanceof RadioChainInfo)) {
255 RadioChainInfo other = (RadioChainInfo) otherObj;
/frameworks/base/core/java/android/app/
H A DPendingIntent.java1145 public boolean equals(Object otherObj) { argument
1146 if (otherObj instanceof PendingIntent) {
1147 return mTarget.asBinder().equals(((PendingIntent)otherObj)
/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java117 public boolean equals(Object otherObj) { argument
118 if (otherObj == null) {
122 Key other = (Key)otherObj;

Completed in 422 milliseconds