/libcore/ojluni/src/main/java/java/util/ |
D | BitSet.java | 94 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/ |
D | logging_pt_BR.properties | 29 # 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.
|
D | logging_fr.properties | 29 # 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.
|
D | logging_zh_CN.properties | 29 # 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.
|
D | logging_de.properties | 29 # 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.
|
D | logging_es.properties | 29 # 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.
|
D | logging_zh_TW.properties | 29 # 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.
|
D | logging_ko.properties | 29 # 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.
|
D | logging_sv.properties | 29 # 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.
|
D | logging_ja.properties | 29 # 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.
|
D | logging_it.properties | 29 # 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.
|
D | logging.properties | 29 # 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/ |
D | RemoveContains.java | 93 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/ |
D | PreviousBits.java | 39 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/ |
D | RandomGenerator.java | 483 for (int words = len >> 3; words--> 0; ) { in nextBytes()
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | StringTest.java | 623 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/ |
D | X-Buffer.java.template | 780 * <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/ |
D | LICENSE | 331 the words "Oracle designates this particular file as subject to the "Classpath"
|
/libcore/ojluni/src/main/ |
D | LICENSE | 339 the words "Oracle designates this particular file as subject to the "Classpath"
|