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

/openjdk7/jdk/src/share/classes/java/util/
H A DBitSet.java95 private transient int wordsInUse = 0; field in class:BitSet
117 assert(wordsInUse == 0 || words[wordsInUse - 1] != 0);
118 assert(wordsInUse >= 0 && wordsInUse <= words.length);
119 assert(wordsInUse == words.length || words[wordsInUse] == 0);
123 * Sets the field wordsInUse to the logical size in words of the bit set.
125 * less than or equal to the current value of wordsInUse!
130 for (i = wordsInUse
[all...]

Completed in 295 milliseconds