Searched refs:tr (Results 1 – 7 of 7) sorted by relevance
/libcore/ |
D | run-libcore-tests | 13 xargs grep -h '^package ' | sed 's/^package //' | sed 's/;$//' | sort | uniq | tr "\n" " ") 20 echo $test_packages | tr " " "\n"
|
/libcore/ojluni/src/main/java/sun/util/locale/ |
D | BaseLocale.java | 261 String tr = this.regn.get(); in equals() local 263 if (tr != null && or != null && in equals() 264 LocaleUtils.caseIgnoreMatch(or, tr)) { in equals()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
D | Support_DecimalFormat.java | 102 Locale tr = new Locale("tr", "TR"); in t_formatToCharacterIterator() local 133 t_Format(9, number, NumberFormat.getCurrencyInstance(tr), getPositiveCurrencyVectorTR()); in t_formatToCharacterIterator() 136 … t_Format(10, negativeNumber, NumberFormat.getCurrencyInstance(tr), getNegativeCurrencyVectorTR()); in t_formatToCharacterIterator()
|
/libcore/support/src/test/java/tests/support/ |
D | Support_DecimalFormat.java | 140 Locale tr = new Locale("de", "CH"); in t_formatToCharacterIterator() local 176 t_Format(11, number, NumberFormat.getCurrencyInstance(tr), getPositiveCurrencyVectorCH()); in t_formatToCharacterIterator() 179 … t_Format(12, negativeNumber, NumberFormat.getCurrencyInstance(tr), getNegativeCurrencyVectorCH()); in t_formatToCharacterIterator()
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentHashMap.java | 3282 TreeNode<K,V> tp = t.parent, tl = t.left, tr = t.right, in checkInvariants() local 3292 if (tr != null && (tr.parent != t || tr.hash < t.hash)) in checkInvariants() 3294 if (t.red && tl != null && tl.red && tr != null && tr.red) in checkInvariants() 3298 if (tr != null && !checkInvariants(tr)) in checkInvariants() 5423 K tr, sr; in compute() local 5425 t.result = (((tr = t.result) == null) ? sr : in compute() 5426 reducer.apply(tr, sr)); in compute() 5471 V tr, sr; in compute() local 5473 t.result = (((tr = t.result) == null) ? sr : in compute() 5474 reducer.apply(tr, sr)); in compute() [all …]
|
D | CompletableFuture.java | 765 @SuppressWarnings("unchecked") T tr = (T) r; in uniWhenComplete() local 766 t = tr; in uniWhenComplete()
|
/libcore/ojluni/src/main/java/java/util/ |
D | HashMap.java | 2369 TreeNode<K,V> tp = t.parent, tl = t.left, tr = t.right, in checkInvariants() local 2379 if (tr != null && (tr.parent != t || tr.hash < t.hash)) in checkInvariants() 2381 if (t.red && tl != null && tl.red && tr != null && tr.red) in checkInvariants() 2385 if (tr != null && !checkInvariants(tr)) in checkInvariants()
|