OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hashCodeValue
(Results
1 - 4
of
4
) sorted by null
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/
X500Name.java
37
private int
hashCodeValue
;
203
return
hashCodeValue
;
208
hashCodeValue
= style.calculateHashCode(this);
210
return
hashCodeValue
;
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/style/
BCStyle.java
464
int
hashCodeValue
= 0;
476
hashCodeValue
^= atv[j].getType().hashCode();
477
hashCodeValue
^= calcHashCode(atv[j].getValue());
482
hashCodeValue
^= rdns[i].getFirst().getType().hashCode();
483
hashCodeValue
^= calcHashCode(rdns[i].getFirst().getValue());
487
return
hashCodeValue
;
RFC4519Style.java
362
int
hashCodeValue
= 0;
374
hashCodeValue
^= atv[j].getType().hashCode();
375
hashCodeValue
^= calcHashCode(atv[j].getValue());
380
hashCodeValue
^= rdns[i].getFirst().getType().hashCode();
381
hashCodeValue
^= calcHashCode(rdns[i].getFirst().getValue());
385
return
hashCodeValue
;
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509Name.java
354
private int
hashCodeValue
;
943
return
hashCodeValue
;
956
hashCodeValue
^= ordering.elementAt(i).hashCode();
957
hashCodeValue
^= value.hashCode();
960
return
hashCodeValue
;
[
all
...]
Completed in 126 milliseconds