HomeSort by relevance Sort by last modified time
    Searched defs:hashCode (Results 1026 - 1050 of 5552) sorted by null

<<41424344454647484950>>

  /libcore/ojluni/src/main/java/java/nio/file/
Path.java     [all...]
  /libcore/ojluni/src/main/java/java/security/cert/
CertPath.java 195 * Returns the hashcode for this certification path. The hash code of
199 * hashCode = path.getType().hashCode();
200 * hashCode = 31*hashCode + path.getCertificates().hashCode();
203 * {@code path1.hashCode()==path2.hashCode()} for any two certification
205 * general contract of {@code Object.hashCode}.
207 * @return the hashcode value for this certification pat
    [all...]
Certificate.java 123 * Returns a hashcode value for this certificate from its
126 * @return the hashcode value.
128 public int hashCode() {
132 h = Arrays.hashCode(X509CertImpl.getEncodedInternal(this));
X509CRL.java 153 * Returns a hashcode value for this CRL from its
156 * @return the hashcode value.
158 public int hashCode() {
  /libcore/ojluni/src/main/java/java/text/
AttributedCharacterIterator.java 127 public final int hashCode() {
128 return super.hashCode();
Collator.java 476 abstract public int hashCode();
FieldPosition.java 243 public int hashCode() {
IcuIteratorWrapper.java 257 * Compute a hashcode for this BreakIterator
261 public int hashCode() {
262 return wrapped.hashCode();
StringCharacterIterator.java 247 if (hashCode() != that.hashCode())
257 * Computes a hashcode for this iterator.
260 public int hashCode()
262 return text.hashCode() ^ pos ^ begin ^ end;
  /libcore/ojluni/src/main/java/java/time/chrono/
ChronoPeriod.java 352 int hashCode();
  /libcore/ojluni/src/main/java/java/util/
Collection.java 101 * {@link Object#hashCode()} specification guarantees that two objects with
110 * {@code clone()}, {@code equals()}, {@code hashCode()} and {@code toString()}
496 * contract for the <tt>Object.hashCode</tt> method, programmers should
498 * method must also override the <tt>Object.hashCode</tt> method in order
499 * to satisfy the general contract for the <tt>Object.hashCode</tt> method.
501 * <tt>c1.hashCode()==c2.hashCode()</tt>.
505 * @see Object#hashCode()
508 int hashCode();
Optional.java 324 public int hashCode() {
325 return Objects.hashCode(value);
  /libcore/ojluni/src/main/java/javax/security/auth/x500/
X500Principal.java 482 * {@code getName(X500Principal.CANONICAL).hashCode()}
486 public int hashCode() {
487 return thisX500Name.hashCode();
  /libcore/ojluni/src/main/java/sun/security/x509/
AccessDescription.java 82 public int hashCode() {
84 myhash = accessMethod.hashCode() + accessLocation.hashCode();
DNSName.java 161 public int hashCode() {
162 return name.toUpperCase(Locale.ENGLISH).hashCode();
GeneralNames.java 142 public int hashCode() {
143 return names.hashCode();
GeneralSubtree.java 171 public int hashCode() {
175 myhash = 37 * myhash + name.hashCode();
RFC822Name.java 155 public int hashCode() {
156 return name.toUpperCase(Locale.ENGLISH).hashCode();
  /libcore/ojluni/src/test/java/time/tck/java/time/
MockSimplePeriod.java 173 public int hashCode() {
174 return unit.hashCode() ^ (int) (amount ^ (amount >>> 32));
  /libcore/ojluni/src/test/java/time/test/java/time/
MockSimplePeriod.java 173 public int hashCode() {
174 return unit.hashCode() ^ (int) (amount ^ (amount >>> 32));
  /libcore/support/src/test/java/tests/support/
Support_ListTest.java 40 int hashCode = 1;
44 hashCode = 31 * hashCode + elem.hashCode();
48 assertTrue("ListTest - hashCode failed", hashCode == list.hashCode());
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ScanClient.java 94 public int hashCode() {
  /packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
ForwardingImageProxy.java 128 public int hashCode() {
129 return Objects.hashCode(getFormat(), getWidth(), getHeight(), getTimestamp());
  /packages/apps/Contacts/src/com/android/contacts/model/account/
AccountTypeWithDataSet.java 90 public int hashCode() {
91 return (accountType == null ? 0 : accountType.hashCode())
92 ^ (dataSet == null ? 0 : dataSet.hashCode());
  /packages/apps/Dialer/java/com/android/contacts/common/model/account/
AccountTypeWithDataSet.java 94 public int hashCode() {
95 return (accountType == null ? 0 : accountType.hashCode())
96 ^ (dataSet == null ? 0 : dataSet.hashCode());

Completed in 1300 milliseconds

<<41424344454647484950>>