Searched defs:equals (Results 26 - 50 of 969) sorted by last modified time

1234567891011>>

/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractMapEntry.java62 * Implemented per API documentation of {@link java.util.Map.Entry#equals(Object)}
67 public boolean equals(Object obj) { method in class:AbstractMapEntry
75 return (getKey() == null ? other.getKey() == null : getKey().equals(other.getKey())) && (getValue() == null ? other.getValue() == null : getValue().equals(other.getValue()));
79 * Gets a hashCode compatible with the equals method.
H A DAbstractReferenceMap.java438 return (key1 == key2 || key1.equals(key2));
643 public boolean equals(Object obj) { method in class:AbstractReferenceMap.ReferenceEntry
/external/smack/src/org/jivesoftware/smack/util/dns/
H A DHostAddress.java76 public boolean equals(Object o) { method in class:HostAddress
86 if (!fqdn.equals(address.fqdn)) {
/external/smack/src/org/jivesoftware/smackx/
H A DChatStateManager.java131 public boolean equals(Object o) { method in class:ChatStateManager
137 return connection.equals(that.connection);
H A DFormField.java303 public boolean equals(Object obj) { method in class:FormField
313 return toXML().equals(other.toXML());
379 public boolean equals(Object obj) { method in class:FormField.Option
389 if (!value.equals(other.value))
395 if (!thisLabel.equals(otherLabel))
/external/smack/src/org/jivesoftware/smackx/bookmark/
H A DBookmarkedConference.java115 public boolean equals(Object obj) { method in class:BookmarkedConference
H A DBookmarkedURL.java89 public boolean equals(Object obj) { method in class:BookmarkedURL
/external/smack/src/org/jivesoftware/smackx/muc/
H A DOccupant.java105 public boolean equals(Object obj) { method in class:Occupant
110 return jid.equals(occupant.jid);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDiscoverInfo.java186 if (feature.equals(it.next().getVar()))
226 if (i.equals(i2))
243 if (f.equals(f2))
379 public boolean equals(Object obj) { method in class:DiscoverInfo.Identity
388 if (!this.category.equals(other.category))
393 if (!otherLang.equals(thisLang))
399 if (!otherType.equals(thisType))
404 if (!thisName.equals(otherName))
436 if (category.equals(other.category)) {
437 if (thisType.equals(otherTyp
490 public boolean equals(Object obj) { method in class:DiscoverInfo.Feature
[all...]
H A DVCard.java640 public boolean equals(Object o) { method in class:VCard
646 if (emailHome != null ? !emailHome.equals(vCard.emailHome) : vCard.emailHome != null) {
649 if (emailWork != null ? !emailWork.equals(vCard.emailWork) : vCard.emailWork != null) {
652 if (firstName != null ? !firstName.equals(vCard.firstName) : vCard.firstName != null) {
655 if (!homeAddr.equals(vCard.homeAddr)) {
658 if (!homePhones.equals(vCard.homePhones)) {
661 if (lastName != null ? !lastName.equals(vCard.lastName) : vCard.lastName != null) {
664 if (middleName != null ? !middleName.equals(vCard.middleName) : vCard.middleName != null) {
668 !organization.equals(vCard.organization) : vCard.organization != null) {
672 !organizationUnit.equals(vCar
[all...]
/external/smack/src/org/xbill/DNS/
H A DAPLRecord.java72 equals(Object arg) { method in class:APLRecord.Element
79 address.equals(elt.address));
H A DEDNSOption.java192 equals(Object arg) { method in class:EDNSOption
198 return Arrays.equals(getData(), opt.getData());
H A DName.java206 if (s.equals(""))
208 else if (s.equals("@")) {
214 } else if (s.equals(".")) {
301 if (s.equals("@") && origin != null)
303 else if (s.equals("."))
560 return equals(domain);
561 return domain.equals(name, offset(labels - dlabels));
733 equals(byte [] b, int bpos) { method in class:Name
754 equals(Object arg) { method in class:Name
768 return equals(
[all...]
H A DRecord.java321 if (!rdata.equals("")) {
458 if (t.type == Tokenizer.IDENTIFIER && t.value.equals("\\#")) {
565 name.equals(rec.name));
575 equals(Object arg) { method in class:Record
579 if (type != r.type || dclass != r.dclass || !name.equals(r.name))
583 return Arrays.equals(array1, array2);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DLabelMethodItem.java64 //force it to call equals when two labels are at the same address
68 public boolean equals(Object o) { method in class:LabelMethodItem
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DRegisterType.java70 public boolean equals(Object o) { method in class:RegisterType
85 return (type != null ? type.equals(that.type) : that.type == null);
273 if (other.equals(this)) {
300 if (mergedType.equals(this.type)) {
303 if (mergedType.equals(other.type)) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
H A DBaseAnnotation.java49 public boolean equals(Object o) { method in class:BaseAnnotation
53 getType().equals(other.getType()) &&
54 getElements().equals(other.getElements());
H A DBaseAnnotationElement.java47 public boolean equals(Object o) { method in class:BaseAnnotationElement
50 return getName().equals(other.getName()) &&
51 getValue().equals(other.getValue());
H A DBaseExceptionHandler.java66 public boolean equals(@Nullable Object o) { method in class:BaseExceptionHandler
H A DBaseTryBlock.java38 @Override public boolean equals(Object o) { method in class:BaseTryBlock
43 getExceptionHandlers().equals(other.getExceptionHandlers());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
H A DBaseFieldReference.java48 public boolean equals(@Nullable Object o) { method in class:BaseFieldReference
51 return getDefiningClass().equals(other.getDefiningClass()) &&
52 getName().equals(other.getName()) &&
53 getType().equals(other.getType());
H A DBaseMethodReference.java52 public boolean equals(@Nullable Object o) { method in class:BaseMethodReference
55 return getDefiningClass().equals(other.getDefiningClass()) &&
56 getName().equals(other.getName()) &&
57 getReturnType().equals(other.getReturnType()) &&
H A DBaseStringReference.java46 public boolean equals(@Nullable Object o) { method in class:BaseStringReference
48 return getString().equals(((StringReference)o).getString());
H A DBaseTypeReference.java45 public boolean equals(Object o) { method in class:BaseTypeReference
48 return getType().equals(((TypeReference)o).getType());
51 return getType().equals(o.toString());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
H A DBaseAnnotationEncodedValue.java51 public boolean equals(@Nullable Object o) { method in class:BaseAnnotationEncodedValue
54 return getType().equals(other.getType()) &&
55 getElements().equals(other.getElements());

Completed in 191 milliseconds

1234567891011>>