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

/libcore/ojluni/src/main/java/java/util/
H A DBitSet.java67 * BitSets are packed into arrays of "words." Currently a word is
92 private long[] words; field in class:BitSet
95 * The number of words in the logical size of this BitSet.
100 * Whether the size of "words" is user-specified. If so, we assume
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.
126 * WARNING:This method assumes that the number of words actuall
173 BitSet(long[] words) argument
[all...]

Completed in 4 milliseconds