HomeSort by relevance Sort by last modified time
    Searched defs:cachedHashCode (Results 1 - 8 of 8) sorted by null

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAContext.java 111 * as this.invokingState + parent.cachedHashCode. Avoids walking
117 protected int cachedHashCode;
123 this.cachedHashCode = invokingState.stateNumber;
126 this.cachedHashCode += parent.cachedHashCode;
140 if ( this.cachedHashCode != other.cachedHashCode ) {
263 return cachedHashCode;
DFAState.java 129 protected int cachedHashCode;
239 cachedHashCode += c.state + c.alt;
393 if ( cachedHashCode==0 ) {
398 return cachedHashCode;
  /external/guava/guava/src/com/google/common/collect/
SingletonImmutableSet.java 42 // the same time, and both recalculate it. If the cachedHashCode is 0,
44 private transient int cachedHashCode;
53 cachedHashCode = hashCode;
106 int code = cachedHashCode;
108 cachedHashCode = code = element.hashCode();
114 return cachedHashCode != 0;
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationImpl.java 45 private transient int cachedHashCode = Integer.MIN_VALUE;
184 if (cachedHashCode == Integer.MIN_VALUE) {
221 cachedHashCode = hashCode;
223 return cachedHashCode;
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilt/common/antlr/
antlr-3.4-complete.jar 
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 

Completed in 86 milliseconds