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

/libcore/ojluni/src/main/java/java/util/
H A DBitSet.java97 private transient int wordsInUse = 0; field in class:BitSet
119 assert(wordsInUse == 0 || words[wordsInUse - 1] != 0);
120 assert(wordsInUse >= 0 && wordsInUse <= words.length);
121 assert(wordsInUse == words.length || words[wordsInUse] == 0);
125 * Sets the field wordsInUse to the logical size in words of the bit set.
127 * less than or equal to the current value of wordsInUse!
132 for (i = wordsInUse
[all...]

Completed in 69 milliseconds