Searched defs:hashCode (Results 26 - 50 of 794) sorted by last modified time

1234567891011>>

/external/smack/src/org/jivesoftware/smack/util/dns/
H A DHostAddress.java93 public int hashCode() { method in class:HostAddress
95 result = 37 * result + fqdn.hashCode();
/external/smack/src/org/jivesoftware/smackx/
H A DChatStateManager.java141 public int hashCode() { method in class:ChatStateManager
142 return connection.hashCode();
H A DFormField.java317 public int hashCode() { method in class:FormField
318 return toXML().hashCode();
402 public int hashCode() { method in class:FormField.Option
404 result = 37 * result + value.hashCode();
405 result = 37 * result + (label == null ? 0 : label.hashCode());
/external/smack/src/org/jivesoftware/smackx/muc/
H A DOccupant.java113 public int hashCode() { method in class:Occupant
115 result = affiliation.hashCode();
116 result = 17 * result + role.hashCode();
117 result = 17 * result + jid.hashCode();
118 result = 17 * result + (nick != null ? nick.hashCode() : 0);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDiscoverInfo.java411 public int hashCode() { method in class:DiscoverInfo.Identity
413 result = 37 * result + category.hashCode();
414 result = 37 * result + (lang == null ? 0 : lang.hashCode());
415 result = 37 * result + (type == null ? 0 : type.hashCode());
416 result = 37 * result + (name == null ? 0 : name.hashCode());
503 public int hashCode() { method in class:DiscoverInfo.Feature
504 return 37 * variable.hashCode();
H A DVCard.java688 public int hashCode() { method in class:VCard
690 result = homePhones.hashCode();
691 result = 29 * result + workPhones.hashCode();
692 result = 29 * result + homeAddr.hashCode();
693 result = 29 * result + workAddr.hashCode();
694 result = 29 * result + (firstName != null ? firstName.hashCode() : 0);
695 result = 29 * result + (lastName != null ? lastName.hashCode() : 0);
696 result = 29 * result + (middleName != null ? middleName.hashCode() : 0);
697 result = 29 * result + (emailHome != null ? emailHome.hashCode() : 0);
698 result = 29 * result + (emailWork != null ? emailWork.hashCode()
[all...]
/external/smack/src/org/xbill/DNS/
H A DAPLRecord.java83 hashCode() { method in class:APLRecord.Element
84 return address.hashCode() + prefixLength + (negative ? 1 : 0);
H A DEDNSOption.java205 hashCode() { method in class:EDNSOption
H A DName.java761 d.hashCode();
763 hashCode();
775 hashCode() { method in class:Name
H A DRecord.java590 hashCode() { method in class:Record
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DLabelMethodItem.java63 public int hashCode() { method in class:LabelMethodItem
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DRegisterType.java89 public int hashCode() { method in class:RegisterType
91 result = 31 * result + (type != null ? type.hashCode() : 0);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
H A DBaseAnnotation.java42 public int hashCode() { method in class:BaseAnnotation
43 int hashCode = getVisibility();
44 hashCode = hashCode*31 + getType().hashCode();
45 return hashCode*31 + getElements().hashCode();
H A DBaseAnnotationElement.java41 public int hashCode() { method in class:BaseAnnotationElement
42 int hashCode = getName().hashCode();
43 return hashCode*31 + getValue().hashCode();
H A DBaseExceptionHandler.java59 public int hashCode() { method in class:BaseExceptionHandler
61 int hashCode = exceptionType==null?0:exceptionType.hashCode();
62 return hashCode*31 + getHandlerCodeAddress();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
H A DBaseFieldReference.java41 public int hashCode() { method in class:BaseFieldReference
42 int hashCode = getDefiningClass().hashCode();
43 hashCode = hashCode*31 + getName().hashCode();
44 return hashCode*31 + getType().hashCode();
H A DBaseMethodReference.java44 public int hashCode() { method in class:BaseMethodReference
45 int hashCode = getDefiningClass().hashCode();
46 hashCode = hashCode*31 + getName().hashCode();
47 hashCode = hashCode*31 + getReturnType().hashCode();
48 return hashCode*3
[all...]
H A DBaseStringReference.java41 public int hashCode() { method in class:BaseStringReference
42 return getString().hashCode();
H A DBaseTypeReference.java40 public int hashCode() { method in class:BaseTypeReference
41 return getType().hashCode();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
H A DBaseAnnotationEncodedValue.java45 public int hashCode() { method in class:BaseAnnotationEncodedValue
46 int hashCode = getType().hashCode();
47 return hashCode * 31 + getElements().hashCode();
H A DBaseArrayEncodedValue.java45 public int hashCode() { method in class:BaseArrayEncodedValue
46 return getValue().hashCode();
H A DBaseBooleanEncodedValue.java45 public int hashCode() { method in class:BaseBooleanEncodedValue
H A DBaseByteEncodedValue.java44 public int hashCode() { method in class:BaseByteEncodedValue
H A DBaseCharEncodedValue.java45 public int hashCode() { method in class:BaseCharEncodedValue
H A DBaseDoubleEncodedValue.java44 public int hashCode() { method in class:BaseDoubleEncodedValue

Completed in 292 milliseconds

1234567891011>>