Searched refs:cachedHashCode (Results 1 - 5 of 5) sorted by relevance

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFAContext.java111 * as this.invokingState + parent.cachedHashCode. Avoids walking
117 protected int cachedHashCode; field in class:NFAContext
123 this.cachedHashCode = invokingState.stateNumber;
126 this.cachedHashCode += parent.cachedHashCode;
140 if ( this.cachedHashCode != other.cachedHashCode ) {
263 return cachedHashCode;
H A DDFAState.java129 protected int cachedHashCode; field in class:DFAState
239 cachedHashCode += c.state + c.alt;
393 if ( cachedHashCode==0 ) {
398 return cachedHashCode;
/external/guava/guava/src/com/google/common/collect/
H A DSingletonImmutableSet.java42 // the same time, and both recalculate it. If the cachedHashCode is 0,
44 private transient int cachedHashCode; field in class:SingletonImmutableSet
53 cachedHashCode = hashCode;
106 int code = cachedHashCode;
108 cachedHashCode = code = element.hashCode();
114 return cachedHashCode != 0;
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotationImpl.java45 private transient int cachedHashCode = Integer.MIN_VALUE; field in class:AnnotationImpl
184 if (cachedHashCode == Integer.MIN_VALUE) {
221 cachedHashCode = hashCode;
223 return cachedHashCode;
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 111 milliseconds