Searched defs:equals (Results 126 - 150 of 154) sorted by path

1234567

/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
H A DProcessErrorsTest.java224 return appPkg.equals(errPkg);
333 return a.equals(b);
338 public boolean equals(Object other) { method in class:ProcessErrorsTest.ProcessError
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java141 public boolean equals(Object obj) { method in class:Bridge.IntArray
147 if (!Arrays.equals(mArray, other.mArray)) return false;
229 if (debug != null && !debug.equals("0") && !debug.equals("false")) {
278 // wrapper that properly implements equals and hashcode for the array
/frameworks/base/voip/java/com/android/server/sip/
H A DSipWakeupTimer.java239 if (getAction().equals(action)
337 public boolean equals(Object that) { method in class:SipWakeupTimer.MyEventComparator
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java276 public boolean equals(Object obj) { method in class:WifiP2pDevice
284 return other.deviceAddress.equals(deviceAddress);
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pServiceInfo.java139 public boolean equals(Object o) { method in class:WifiP2pServiceInfo
148 return mQueryList.equals(servInfo.mQueryList);
H A DWifiP2pServiceRequest.java213 public boolean equals(Object o) { method in class:WifiP2pServiceRequest
235 return req.mQuery.equals(mQuery);
H A DWifiP2pServiceResponse.java223 // The length equals to 3 plus the number of octets in the vendor
304 public boolean equals(Object o) { method in class:WifiP2pServiceResponse
316 equals(req.mDevice.deviceAddress, mDevice.deviceAddress) &&
317 Arrays.equals(req.mData, mData);
320 private boolean equals(Object a, Object b) { method in class:WifiP2pServiceResponse
324 return a.equals(b);
/frameworks/compile/slang/
H A Dslang_rs_export_type.cpp40 if (!ParentClass::equals(E)) \
840 bool RSExportType::equals(const RSExportable *E) const { function in class:slang::RSExportType
1112 bool RSExportPrimitiveType::equals(const RSExportable *E) const { function in class:slang::RSExportPrimitiveType
1174 bool RSExportPointerType::equals(const RSExportable *E) const { function in class:slang::RSExportPointerType
1177 ->getPointeeType()->equals(getPointeeType()));
1245 bool RSExportVectorType::equals(const RSExportable *E) const { function in class:slang::RSExportVectorType
1354 bool RSExportMatrixType::equals(const RSExportable *E) const { function in class:slang::RSExportMatrixType
1407 bool RSExportConstantArrayType::equals(const RSExportable *E) const { function in class:slang::RSExportConstantArrayType
1412 (getElementType()->equals(RHS->getElementType())));
1547 bool RSExportRecordType::equals(cons function in class:slang::RSExportRecordType
[all...]
H A Dslang_rs_exportable.cpp29 bool RSExportable::equals(const RSExportable *E) const { function in class:slang::RSExportable
/frameworks/native/opengl/tools/glgen/src/
H A DCType.java57 if(baseType.equals("EGLContext")
58 || baseType.equals("EGLConfig")
59 || baseType.equals("EGLSurface")
60 || baseType.equals("EGLDisplay")) {
68 return baseType.equals("GLvoid") ||
69 baseType.equals("void");
73 return isConst && isPointer && baseType.equals("char");
108 public boolean equals(Object o) { method in class:CType
111 return baseType.equals(c.baseType) &&
/frameworks/native/opengl/tools/glgen/static/egl/
H A DEGLConfig.java30 public boolean equals(Object o) { method in class:EGLConfig
H A DEGLContext.java30 public boolean equals(Object o) { method in class:EGLContext
H A DEGLDisplay.java30 public boolean equals(Object o) { method in class:EGLDisplay
H A DEGLSurface.java30 public boolean equals(Object o) { method in class:EGLSurface
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DEventRecurrence.java453 * TODO: replace this with Arrays.equals() when the old parser goes away.
469 public boolean equals(Object obj) { method in class:EventRecurrence
481 (until == null ? er.until == null : until.equals(er.until)) &&
498 // We overrode equals, so we must override hashCode(). Nobody seems to need this though.
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbLocation.java112 public boolean equals(Object o) { method in class:SmsCbLocation
120 return mPlmn.equals(other.mPlmn) && mLac == other.mLac && mCid == other.mCid;
141 return mPlmn.equals(area.mPlmn);
153 if (!mPlmn.equals(plmn)) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DApnSetting.java196 public boolean equals(Object o) { method in class:ApnSetting
198 return (this.toString().equals(o.toString()));
H A DIntRangeManager.java118 if (!range.equals(nextRange)) {
143 public boolean equals(Object o) { method in class:IntRangeManager.ClientRange
148 client.equals(other.client);
379 if (cr.startId == startId && cr.endId == endId && cr.client.equals(client)) {
401 if (cr.startId == startId && cr.endId == endId && cr.client.equals(client)) {
H A DRestrictedState.java89 public boolean equals (Object o) { method in class:RestrictedState
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java339 public boolean equals(Object obj) { method in class:GsmSMSDispatcher.SmsCbConcatInfo
347 && mLocation.equals(other.mLocation);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java76 public boolean equals(Object o) { method in class:SipPhone
80 return mProfile.getUriString().equals(that.mProfile.getUriString());
91 public boolean equals(SipPhone phone) { method in class:SipPhone
92 return getSipUri().equals(phone.getSipUri());
112 if (localUri.equals(mProfile.getUriString())) {
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java104 // Also need to inherit toString(), equals().
218 public boolean equals(Object obj) { method in class:VCardEntry.NameData
227 return (TextUtils.equals(mFamily, nameData.mFamily)
228 && TextUtils.equals(mMiddle, nameData.mMiddle)
229 && TextUtils.equals(mGiven, nameData.mGiven)
230 && TextUtils.equals(mPrefix, nameData.mPrefix)
231 && TextUtils.equals(mSuffix, nameData.mSuffix)
232 && TextUtils.equals(mFormatted, nameData.mFormatted)
233 && TextUtils.equals(mPhoneticFamily, nameData.mPhoneticFamily)
234 && TextUtils.equals(mPhoneticMiddl
344 public boolean equals(Object obj) { method in class:VCardEntry.PhoneData
434 public boolean equals(Object obj) { method in class:VCardEntry.EmailData
641 public boolean equals(Object obj) { method in class:VCardEntry.PostalData
808 public boolean equals(Object obj) { method in class:VCardEntry.OrganizationData
911 public boolean equals(Object obj) { method in class:VCardEntry.ImData
1010 public boolean equals(Object obj) { method in class:VCardEntry.PhotoData
1091 public boolean equals(Object obj) { method in class:VCardEntry.NicknameData
1143 public boolean equals(Object obj) { method in class:VCardEntry.NoteData
1201 public boolean equals(Object obj) { method in class:VCardEntry.WebsiteData
1257 public boolean equals(Object obj) { method in class:VCardEntry.BirthdayData
1313 public boolean equals(Object obj) { method in class:VCardEntry.AnniversaryData
1388 public boolean equals(Object obj) { method in class:VCardEntry.SipData
1486 public boolean equals(Object obj) { method in class:VCardEntry.AndroidCustomData
[all...]
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DPropertyNode.java123 public boolean equals(Object obj) { method in class:PropertyNode
130 if (propName == null || !propName.equals(node.propName)) {
132 } else if (!paramMap_TYPE.equals(node.paramMap_TYPE)) {
134 } else if (!paramMap_TYPE.equals(node.paramMap_TYPE)) {
136 } else if (!propGroupSet.equals(node.propGroupSet)) {
140 if (propValue_bytes != null && Arrays.equals(propValue_bytes, node.propValue_bytes)) {
143 if (!propValue.equals(node.propValue)) {
151 return (propValue_vector.equals(node.propValue_vector) ||
/frameworks/rs/cpp/
H A DBaseObj.cpp62 bool BaseObj::equals(const BaseObj *obj) { function in class:BaseObj
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DBaseObj.java121 public boolean equals(Object obj) { method in class:BaseObj

Completed in 1169 milliseconds

1234567