Home
last modified time | relevance | path

Searched refs:words (Results 1 – 19 of 19) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
DBitSet.java94 private long[] words; field in BitSet
122 assert(wordsInUse == 0 || words[wordsInUse - 1] != 0); in checkInvariants()
123 assert(wordsInUse >= 0 && wordsInUse <= words.length); in checkInvariants()
124 assert(wordsInUse == words.length || words[wordsInUse] == 0); in checkInvariants()
136 if (words[i] != 0) in recalculateWordsInUse()
169 words = new long[wordIndex(nbits-1) + 1]; in initWords()
176 private BitSet(long[] words) { in BitSet() argument
177 this.words = words; in BitSet()
178 this.wordsInUse = words.length; in BitSet()
228 long[] words = new long[n]; in valueOf() local
[all …]
/libcore/ojluni/src/main/resources/sun/util/logging/resources/
Dlogging_pt_BR.properties29 # The following ALL CAPS words should be translated.
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAPS words should be translated.
Dlogging_fr.properties29 # The following ALL CAPS words should be translated.
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAPS words should be translated.
Dlogging_zh_CN.properties29 # The following ALL CAPS words should be translated.
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAPS words should be translated.
Dlogging_de.properties29 # The following ALL CAPS words should be translated.
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAPS words should be translated.
Dlogging_es.properties29 # The following ALL CAPS words should be translated.
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAPS words should be translated.
Dlogging_zh_TW.properties29 # The following ALL CAPS words should be translated.
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAPS words should be translated.
Dlogging_ko.properties29 # The following ALL CAPS words should be translated.
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAPS words should be translated.
Dlogging_sv.properties29 # The following ALL CAPS words should be translated.
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAPS words should be translated.
Dlogging_ja.properties29 # The following ALL CAPS words should be translated.
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAPS words should be translated.
Dlogging_it.properties29 # The following ALL CAPS words should be translated.
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAPS words should be translated.
Dlogging.properties29 # The following ALL CAPS words should be translated.
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAPS words should be translated.
/libcore/ojluni/src/test/java/util/PriorityQueue/
DRemoveContains.java93 List<String> words = in test() local
96 q.addAll(words); in test()
97 for (String word : words) in test()
102 for (String word : words) in test()
/libcore/ojluni/src/test/java/util/BitSet/
DPreviousBits.java39 long[] words = s.toLongArray(); in testHashCode() local
40 for (int i = words.length; --i >= 0; ) in testHashCode()
41 h ^= words[i] * (i + 1); in testHashCode()
/libcore/ojluni/src/main/java/java/util/random/
DRandomGenerator.java483 for (int words = len >> 3; words--> 0; ) { in nextBytes()
/libcore/luni/src/test/java/libcore/java/lang/
DStringTest.java623 String[] words = string.split("(?<!(^|[A-Z]))(?=[A-Z])|(?<!^)(?=[A-Z][a-z])| |_|-"); in testSplit_lookBehind() local
624 assertEquals(1, words.length); in testSplit_lookBehind()
625 assertEquals(string, words[0]); in testSplit_lookBehind()
/libcore/ojluni/src/main/java/java/nio/
DX-Buffer.java.template780 * <p> In other words, an invocation of this method of the form
992 * <p> In other words, an invocation of this method of the form
1053 * <p> In other words, an invocation of this method of the form
1256 * <p> In other words, an invocation of this method of the form
1484 * <p> In other words, an invocation of this method of the form
/libcore/
DLICENSE331 the words "Oracle designates this particular file as subject to the "Classpath"
/libcore/ojluni/src/main/
DLICENSE339 the words "Oracle designates this particular file as subject to the "Classpath"