Searched refs:word (Results 1 – 9 of 9) sorted by relevance
570 String word = ""; in generate() local583 file = new File(word); in generate()585 file = new File(file, word); in generate()587 word = ""; in generate()597 word = ""; in generate()610 word = ""; in generate()613 word = word + generation; in generate()618 word = word + unique; in generate()623 word = word + "%"; in generate()628 word = word + ch; in generate()[all …]
943 String word = names[i]; in loadLoggerHandlers()947 Class<?> clz = getClassInstance(word); in loadLoggerHandlers()951 String levs = getProperty(word + ".level"); in loadLoggerHandlers()958 System.err.println("Can't set level for " + word); in loadLoggerHandlers()964 System.err.println("Can't load log handler \"" + word + "\""); in loadLoggerHandlers()1380 String word = hands.substring(ix, end); in parseClassNames() local1382 word = word.trim(); in parseClassNames()1383 if (word.length() == 0) { in parseClassNames()1386 result.add(word); in parseClassNames()1414 String word = names[i]; in readConfiguration() local[all …]
723 long word = words[u] & (WORD_MASK << fromIndex); in nextSetBit() local726 if (word != 0) in nextSetBit()727 return (u * BITS_PER_WORD) + Long.numberOfTrailingZeros(word); in nextSetBit()730 word = words[u]; in nextSetBit()755 long word = ~words[u] & (WORD_MASK << fromIndex); in nextClearBit() local758 if (word != 0) in nextClearBit()759 return (u * BITS_PER_WORD) + Long.numberOfTrailingZeros(word); in nextClearBit()762 word = ~words[u]; in nextClearBit()801 long word = words[u] & (WORD_MASK >>> -(fromIndex+1)); in previousSetBit() local804 if (word != 0) in previousSetBit()[all …]
97 for (String word : words) in test()98 check(q.contains(word)); in test()102 for (String word : words) in test()103 check(q.contains(word) ^ word.equals("fi")); in test()
273 private static char unpack(long packed, int word) { // word==0 => return a, ==3 => return d in unpack() argument274 assert(word <= 3); in unpack()275 return (char)(packed >> ((3-word) * 16)); in unpack()
333 String word = stutter.wordInIndex(index); in findWithinHorizonTest() local334 if (word != null) { in findWithinHorizonTest()335 String result = sc.findWithinHorizon(word, index); in findWithinHorizonTest()336 if ((result == null) || (!result.equals(word))) in findWithinHorizonTest()340 word = stutter.wordBeyondIndex(index); in findWithinHorizonTest()342 String result = sc.findWithinHorizon(word, index); in findWithinHorizonTest()
721 // Test the word char escape sequence
3813 Matcher word = Pattern.compile("\\w++").matcher(""); in unicodeClassesTest() local3932 POSIX_ASCII.isWord(cp) != word.reset(str).matches() || in unicodeClassesTest()
695 // Test the word char escape sequence