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

12 3 4 5 6 7 8 91011>>

  /cts/tools/dasm/src/java_cup/
parse_action.java 74 public int hashCode()
production_part.java 76 public int hashCode()
78 return label()==null ? 0 : label().hashCode();
reduce_action.java 69 public int hashCode()
72 return reduce_with().hashCode();
shift_action.java 69 public int hashCode()
72 return shift_to().hashCode();
symbol_part.java 81 public int hashCode()
83 return super.hashCode() ^
84 (the_symbol()==null ? 0 : the_symbol().hashCode());
  /dalvik/dx/tests/086-ssa-edge-split/
Blort.java 49 hashCode();
50 hashCode();
  /external/annotation-tools/scene-lib/src/annotations/el/
BoundLocation.java 63 public int hashCode() {
TypeIndexLocation.java 28 public int hashCode() {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
PredicateLabel.java 53 public int hashCode() {
54 return semanticContext.hashCode();
  /external/apache-http/src/org/apache/http/util/
LangUtils.java 36 * {@link Object#equals equals} and {@link Object#hashCode hashCode} methods.
56 public static int hashCode(final int seed, final int hashcode) {
57 return seed * HASH_OFFSET + hashcode;
60 public static int hashCode(final int seed, final boolean b) {
61 return hashCode(seed, b ? 1 : 0);
64 public static int hashCode(final int seed, final Object obj) {
65 return hashCode(seed, obj != null ? obj.hashCode() : 0)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Null.java 52 public int hashCode()
  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
StartupAnnounceMessage.java 41 @Override public int hashCode() {
42 return trialId.hashCode();
  /external/dagger2/producers/src/main/java/dagger/producers/monitoring/
ProducerToken.java 55 public int hashCode() {
56 return classToken.hashCode();
  /external/glide/library/src/main/java/com/bumptech/glide/load/
Key.java 8 * and {@link Object#hashCode()}. Implementations are generally expected to add all uniquely identifying information
9 * used in in {@link java.lang.Object#equals(Object)}} and {@link Object#hashCode()}} to the given
30 int hashCode();
  /external/guice/core/src/com/google/inject/
Key.java 60 private final int hashCode;
80 this.hashCode = computeHashCode();
102 this.hashCode = computeHashCode();
122 this.hashCode = computeHashCode();
133 this.hashCode = computeHashCode();
141 this.hashCode = computeHashCode();
149 return typeLiteral.hashCode() * 31 + annotationStrategy.hashCode();
223 @Override public final int hashCode() {
224 return this.hashCode;
    [all...]
  /external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
SampleBaseClass.java 21 public int hashCode() {
22 return value.hashCode();
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Pair.java 54 public int hashCode() {
55 return first.hashCode() * 37 + second.hashCode();
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
HashCodeVisitor.java 46 public static int hashCode(final Node node) {
52 return (n.getMembers().accept(this, arg)) * 31 + (n.getModifiers().hashCode()) * 31 + (n.getName().accept(this, arg)) * 31 + (n.getAnnotations().accept(this, arg)) * 31 + (n.getComment().isPresent() ? n.getComment().get().accept(this, arg) : 0);
57 return (n.getDefaultValue().isPresent() ? n.getDefaultValue().get().accept(this, arg) : 0) * 31 + (n.getModifiers().hashCode()) * 31 + (n.getName().accept(this, arg)) * 31 + (n.getType().accept(this, arg)) * 31 + (n.getAnnotations().accept(this, arg)) * 31 + (n.getComment().isPresent() ? n.getComment().get().accept(this, arg) : 0);
82 return (n.getComponentType().accept(this, arg)) * 31 + (n.getOrigin().hashCode()) * 31 + (n.getAnnotations().accept(this, arg)) * 31 + (n.getComment().isPresent() ? n.getComment().get().accept(this, arg) : 0);
92 return (n.getOperator().hashCode()) * 31 + (n.getTarget().accept(this, arg)) * 31 + (n.getValue().accept(this, arg)) * 31 + (n.getComment().isPresent() ? n.getComment().get().accept(this, arg) : 0);
97 return (n.getLeft().accept(this, arg)) * 31 + (n.getOperator().hashCode()) * 31 + (n.getRight().accept(this, arg)) * 31 + (n.getComment().isPresent() ? n.getComment().get().accept(this, arg) : 0);
102 return (n.getContent().hashCode()) * 31 + (n.getComment().isPresent() ? n.getComment().get().accept(this, arg) : 0);
132 return (n.getValue().hashCode()) * 31 + (n.getComment().isPresent() ? n.getComment().get().accept(this, arg) : 0);
142 return (n.getExtendedTypes().accept(this, arg)) * 31 + (n.getImplementedTypes().accept(this, arg)) * 31 + (n.isInterface() ? 1 : 0) * 31 + (n.getTypeParameters().accept(this, arg)) * 31 + (n.getMembers().accept(this, arg)) * 31 + (n.getModifiers().hashCode()) * 31 + (n.getName().accept(this, arg)) * 31 + (n.getAnnotations().accept(this, arg)) * 31 + (n.getComment().isPresent() ? n.getComment().get().accept(this, arg) : 0);
162 return (n.getBody().accept(this, arg)) * 31 + (n.getModifiers().hashCode()) * 31 + (n.getName().accept(this, arg)) * 31 + (n.getParameters().accept(this, arg)) * 31 + (n.g (…)
    [all...]
NoCommentHashCodeVisitor.java 38 public static int hashCode(final Node node) {
44 return (n.getMembers().accept(this, arg)) * 31 + (n.getModifiers().hashCode()) * 31 + (n.getName().accept(this, arg)) * 31 + (n.getAnnotations().accept(this, arg));
49 return (n.getDefaultValue().isPresent() ? n.getDefaultValue().get().accept(this, arg) : 0) * 31 + (n.getModifiers().hashCode()) * 31 + (n.getName().accept(this, arg)) * 31 + (n.getType().accept(this, arg)) * 31 + (n.getAnnotations().accept(this, arg));
74 return (n.getComponentType().accept(this, arg)) * 31 + (n.getOrigin().hashCode()) * 31 + (n.getAnnotations().accept(this, arg));
84 return (n.getOperator().hashCode()) * 31 + (n.getTarget().accept(this, arg)) * 31 + (n.getValue().accept(this, arg));
89 return (n.getLeft().accept(this, arg)) * 31 + (n.getOperator().hashCode()) * 31 + (n.getRight().accept(this, arg));
124 return (n.getValue().hashCode());
134 return (n.getExtendedTypes().accept(this, arg)) * 31 + (n.getImplementedTypes().accept(this, arg)) * 31 + (n.isInterface() ? 1 : 0) * 31 + (n.getTypeParameters().accept(this, arg)) * 31 + (n.getMembers().accept(this, arg)) * 31 + (n.getModifiers().hashCode()) * 31 + (n.getName().accept(this, arg)) * 31 + (n.getAnnotations().accept(this, arg));
154 return (n.getBody().accept(this, arg)) * 31 + (n.getModifiers().hashCode()) * 31 + (n.getName().accept(this, arg)) * 31 + (n.getParameters().accept(this, arg)) * 31 + (n.getReceiverParameter().isPresent() ? n.getReceiverParameter().get().accept(this, arg) : 0) * 31 + (n.getThrownExceptions().accept(this, arg)) * 31 + (n.getTypeParameters().accept(this, arg)) * 31 + (n.getAnnotations().accept(this, arg));
169 return (n.getValue().hashCode());
    [all...]
ObjectIdentityHashCodeVisitor.java 42 public static int hashCode(final Node node) {
48 return n.hashCode();
53 return n.hashCode();
58 return n.hashCode();
63 return n.hashCode();
68 return n.hashCode();
73 return n.hashCode();
78 return n.hashCode();
83 return n.hashCode();
88 return n.hashCode();
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Route.java 71 * Hashcode so this header can be inserted into a set.
73 *@return the hashcode of the encoded address.
75 public int hashCode() {
76 return this.address.getHostPort().encode().toLowerCase().hashCode();
  /external/nist-sip/java/javax/sip/header/
Header.java 10 int hashCode();
  /external/proguard/src/proguard/
MemberSpecification.java 105 public int hashCode()
110 (annotationType == null ? 0 : annotationType.hashCode()) ^
111 (name == null ? 0 : name.hashCode() ) ^
112 (descriptor == null ? 0 : descriptor.hashCode() );
  /external/proguard/src/proguard/evaluation/value/
ComparisonValue.java 57 public int hashCode()
59 return super.hashCode() ^
60 value1.hashCode() ^
61 value2.hashCode();
ConvertedByteValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();

Completed in 946 milliseconds

12 3 4 5 6 7 8 91011>>