Searched defs:hashCodeCache (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DResourceBundle.java512 private int hashCodeCache; field in class:ResourceBundle.CacheKey
560 if (hashCodeCache != otherEntry.hashCodeCache) {
589 return hashCodeCache;
593 hashCodeCache = name.hashCode() << 3;
594 hashCodeCache ^= locale.hashCode();
597 hashCodeCache ^= loader.hashCode();
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLayout.java250 private int hashCodeCache; field in class:TextLayout
717 hashCodeCache = 0;
2567 if (hashCodeCache == 0) {
2569 hashCodeCache = textLine.hashCode();
2571 return hashCodeCache;

Completed in 33 milliseconds