/libcore/ojluni/src/test/java/util/ArrayList/ |
D | AddAll.java | 44 Map m = new WeakHashMap(100000); in main() local 51 Map m = new WeakHashMap(100000); in main() local 58 Map m = new WeakHashMap(100000); in main() local 65 Map m = new WeakHashMap(100000); in main() local 74 Map m = new WeakHashMap(100000); in main() local 83 Map m = new WeakHashMap(100000); in main() local
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ConcurrentHashMap8Test.java | 589 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachKeySequentially() local 599 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachValueSequentially() local 609 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachSequentially() local 619 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachEntrySequentially() local 629 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachKeyInParallel() local 639 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachValueInParallel() local 649 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachInParallel() local 659 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachEntryInParallel() local 670 ConcurrentHashMap<Long, Long> m = longMap(); in testMappedForEachKeySequentially() local 682 ConcurrentHashMap<Long, Long> m = longMap(); in testMappedForEachValueSequentially() local [all …]
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | LinkedHashMapTest.java | 46 Map<String, String> m = new LinkedHashMap<String, String>(8, .75f, true); in test_getOrDefault() local 68 Map<String, String> m = new LinkedHashMap<String, String>(8, .75f, true); in test_putIfAbsent() local 99 Map<String, String> m = new LinkedHashMap<>(8, .75f, true /*accessOrder*/); in test_replace$K$V$V() local 126 Map<String, String> m = new LinkedHashMap<>(8, .75f, true /*accessOrder*/); in test_replace$K$V() local 144 Map<String, String> m = new LinkedHashMap<>(8, .75f, true /*accessOrder*/); in test_computeIfAbsent() local 170 Map<String, String> m = new LinkedHashMap<>(8, .75f, true /*accessOrder*/); in test_computeIfPresent() local 187 Map<String, String> m = new LinkedHashMap<>(8, .75f, true /*accessOrder*/); in test_compute() local 212 Map<String, String> m = new LinkedHashMap<>(8, .75f, true /*accessOrder*/); in test_merge() local 231 LinkedHashMap<String, String> m = new LinkedHashMap<String, String>() { in test_removeEldestEntry() local 260 LinkedHashMap<String, String> m = new LinkedHashMap<String, String>() { in test_removeEldestEntry_removeKey() local [all …]
|
D | MapDefaultMethodTester.java | 48 public static void test_getOrDefault(Map<String, String> m, boolean acceptsNullKey, in test_getOrDefault() argument 134 public static void test_forEach(Map<Integer, Double> m) { in test_forEach() 151 public static void test_putIfAbsent(Map<Integer, Double> m, boolean acceptsNullKey, in test_putIfAbsent() 192 public static void test_remove(Map<Integer, Double> m, boolean acceptsNullKey, in test_remove() 225 public static void test_replace$K$V$V(Map<Integer, Double> m, boolean acceptsNullKey, in test_replace$K$V$V() 265 public static void test_replace$K$V(Map<Integer, Double> m, boolean acceptsNullKey, in test_replace$K$V() 300 public static void test_computeIfAbsent(Map<Integer, Double> m, boolean acceptsNullKey, in test_computeIfAbsent() 343 public static void test_computeIfPresent(Map<Integer, Double> m, boolean acceptsNullKey) { in test_computeIfPresent() 373 public static void test_compute(Map<Integer, Double> m, boolean acceptsNullKey) { in test_compute() 405 public static void test_merge(Map<Integer, Double> m, boolean acceptsNullKey) { in test_merge() [all …]
|
D | HashMapTest.java | 85 Map<String, Integer> m = new HashMap<>(); in test_spliterator_keySet() local 109 Map<String, Integer> m = new HashMap<>(); in test_spliterator_values() local 135 Map<String, Integer> m = new HashMap<>(Collections.singletonMap("key", 42)); in test_spliterator_entrySet() local 150 Map<String, String> m = new HashMap<>(); in test_entrySet_subsizeEstimates() local 178 Map<Integer, String> m = new HashMap<>(); in test_entrySet_subsizeEstimates_recursive() local 199 Map<String, String> m = new HashMap<>(); in test_entrySet_spliterator_sizedButNotSubsized() local
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | ConcurrentHashMap8Test.java | 614 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachKeySequentially() local 624 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachValueSequentially() local 634 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachSequentially() local 644 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachEntrySequentially() local 654 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachKeyInParallel() local 664 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachValueInParallel() local 674 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachInParallel() local 684 ConcurrentHashMap<Long, Long> m = longMap(); in testForEachEntryInParallel() local 695 ConcurrentHashMap<Long, Long> m = longMap(); in testMappedForEachKeySequentially() local 707 ConcurrentHashMap<Long, Long> m = longMap(); in testMappedForEachValueSequentially() local [all …]
|
/libcore/luni/src/test/java/libcore/java/util/regex/ |
D | MatcherTest.java | 46 Matcher m = Pattern.compile("a").matcher("b"); in testResults_notMatched() local 52 Matcher m = Pattern.compile("a(?<g>b)c").matcher("abc"); in testAppendEvaluated() local 62 private void assertAppendEvaluated(Matcher m, String replacement, String expected) { in assertAppendEvaluated() 71 Matcher m = Pattern.compile("a(?<g>b)c").matcher("abc"); in testAppendExpandedReplacement() local 84 private void assertAppendExpandedReplacement(Matcher m, String replacement, String expected) { in assertAppendExpandedReplacement() 94 Matcher m = Pattern.compile("a(?<g>b)c").matcher("abc"); in testAppendReplacement() local 107 private void assertAppendReplacement(Matcher m, String replacement, String expected) { in assertAppendReplacement()
|
D | OldAndroidRegexTest.java | 28 Matcher m = p.matcher("bcd"); in testMatches() local 89 Matcher m = p.matcher("1 (919) 555-1212"); in testGroupCount() local 97 Matcher m = p.matcher("abcdefg"); in testGroups() local 112 Matcher m = p.matcher("abc"); in testFind() local 129 Matcher m = p.matcher("fooaabfooaabfooabfoob"); in testReplaceAll() local 145 Matcher m = p.matcher("fooaabfooaabfooabfoob"); in testReplaceFirst() local 260 Matcher m = EMAIL_ADDRESS_PATTERN.matcher("donot repeate@RC8jjjjjjjjjjjjjjj"); in testMonsterRegexPerformance() local
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | CharacterTest.java | 197 Method m = Character.class.getDeclaredMethod("isDigit" + "Impl", int.class); in test_isDigit_against_icu4c() local 206 Method m = Character.class.getDeclaredMethod("isIdentifierIgnorable" + "Impl", int.class); in test_isIdentifierIgnorable_against_icu4c() local 215 Method m = Character.class.getDeclaredMethod("isLetter" + "Impl", int.class); in test_isLetter_against_icu4c() local 224 Method m = Character.class.getDeclaredMethod("isLetterOrDigit" + "Impl", int.class); in test_isLetterOrDigit_against_icu4c() local 233 Method m = Character.class.getDeclaredMethod("isLowerCase" + "Impl", int.class); in test_isLowerCase_against_icu4c() local 242 Method m = Character.class.getDeclaredMethod("isSpaceChar" + "Impl", int.class); in test_isSpaceChar_against_icu4c() local 258 Method m = Character.class.getDeclaredMethod("isUpperCase" + "Impl", int.class); in test_isUpperCase_against_icu4c() local 267 Method m = Character.class.getDeclaredMethod("isWhitespace" + "Impl", int.class); in test_isWhitespace_against_icu4c() local
|
/libcore/benchmarks/src/benchmarks/ |
D | InvokeInterface.java | 27 MultiClass m = multi; in timeCall0Concrete() local 34 MultiClass m = multi; in timeCall0Interface() local 41 MultiClass m = multi; in timeCall1Interface() local 48 MultiClass m = multi; in timeCall2Interface() local 55 MultiClass m = multi; in timeCall3Interface() local 62 MultiClass m = multi; in timeCall4Interface() local 69 MultiClass m = multi; in timeCall5Interface() local 76 MultiClass m = multi; in timeCall6Interface() local 83 MultiClass m = multi; in timeCall7Interface() local 90 MultiClass m = multi; in timeCall8Interface() local [all …]
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/ |
D | Pattern2Test.java | 53 Matcher m; in testCursors() local 108 Matcher m; in testGroups() local 161 Matcher m; in testReplace() local 208 Matcher m; in testEscapes() local 410 Matcher m; in testCharacterClasses() local 677 Matcher m; in testPOSIXGroups() local 818 Matcher m; in testUnicodeBlocks() local 884 Matcher m; in testMisc() local 962 Matcher m; in testCompile3() local
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/ |
D | ManifestTest.java | 63 Manifest m = jarFile.getManifest(); in getManifest() local 129 Manifest m = getManifest(ATT_JAR_NAME); in testStreamConstructor() local 168 Manifest m = getManifest(ATT_JAR_NAME); in testClear() local 179 Manifest m = getManifest(JAR_NAME); in testClone() local 207 Manifest m = getManifest(JAR_NAME); in testHashCode() local 215 Manifest m = getManifest(ATT_JAR_NAME); in testGetAttributes() local 225 Manifest m = getManifest(ATT_JAR_NAME); in testGetEntries() local 236 Manifest m = getManifest(JAR_NAME); in testGetMainAttributes() local 247 Manifest m = getManifest(JAR_NAME); in testWrite() local 289 Manifest m = getManifest(ATT_JAR_NAME); in testDecoding() local
|
/libcore/ojluni/src/test/java/util/Map/ |
D | MapBinToFromTreeTest.java | 75 public void testPutThenGet(String d, Map<HashCodeInteger, Integer> m) { in testPutThenGet() 85 public void testPutThenTraverse(String d, Map<HashCodeInteger, Integer> m) { in testPutThenTraverse() 99 public void testRemoveThenGet(String d, Map<HashCodeInteger, Integer> m) { in testRemoveThenGet() 111 public void testRemoveThenTraverse(String d, Map<HashCodeInteger, Integer> m) { in testRemoveThenTraverse() 124 public void testUntreeifyOnResizeWithGet(String d, Map<HashCodeInteger, Integer> m) { in testUntreeifyOnResizeWithGet() 146 public void testUntreeifyOnResizeWithTraverse(String d, Map<HashCodeInteger, Integer> m) { in testUntreeifyOnResizeWithTraverse() 164 Collector<Integer, ?, ? extends Collection<Integer>> getCollector(Map<?, ?> m) { in getCollector() 171 void put(int size, Map<HashCodeInteger, Integer> m, BiConsumer<Integer, Integer> c) { in put() argument 179 void remove(Map<HashCodeInteger, Integer> m, BiConsumer<Integer, Integer> c) { in remove() argument
|
/libcore/ojluni/src/main/java/java/security/spec/ |
D | ECFieldF2m.java | 42 private int m; field in ECFieldF2m 53 public ECFieldF2m(int m) { in ECFieldF2m() 84 public ECFieldF2m(int m, BigInteger rp) { in ECFieldF2m() 133 public ECFieldF2m(int m, int[] ks) { in ECFieldF2m()
|
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/ |
D | StreamTestScenario.java | 47 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_FOR_EACH_WITH_CLOSE() 60 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_COLLECT() 70 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_TO_ARRAY() 80 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_ITERATOR() 89 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_SPLITERATOR() 97 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_SPLITERATOR_WITH_MIXED_TRAVERSE_AND_SPLIT() 105 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_SPLITERATOR_FOREACH() 113 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in PAR_STREAM_SEQUENTIAL_FOR_EACH() 121 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in PAR_STREAM_FOR_EACH_ORDERED() 130 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in PAR_STREAM_SPLITERATOR() [all …]
|
D | LongStreamTestScenario.java | 48 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in STREAM_FOR_EACH_WITH_CLOSE() 60 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in STREAM_TO_ARRAY() 69 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in STREAM_ITERATOR() 78 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in STREAM_SPLITERATOR() 87 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in STREAM_SPLITERATOR_WITH_MIXED_TRAVERSE_AND_SPLIT() 95 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in STREAM_SPLITERATOR_FOREACH() 102 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in PAR_STREAM_SEQUENTIAL_FOR_EACH() 110 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in PAR_STREAM_FOR_EACH_ORDERED() 119 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in PAR_STREAM_SPLITERATOR() 128 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in PAR_STREAM_SPLITERATOR_FOREACH() [all …]
|
D | DoubleStreamTestScenario.java | 48 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in STREAM_FOR_EACH_WITH_CLOSE() 60 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in STREAM_TO_ARRAY() 69 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in STREAM_ITERATOR() 78 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in STREAM_SPLITERATOR() 87 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in STREAM_SPLITERATOR_WITH_MIXED_TRAVERSE_AND_SPLIT() 95 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in STREAM_SPLITERATOR_FOREACH() 102 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in PAR_STREAM_SEQUENTIAL_FOR_EACH() 110 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in PAR_STREAM_FOR_EACH_ORDERED() 119 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in PAR_STREAM_SPLITERATOR() 128 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in PAR_STREAM_SPLITERATOR_FOREACH() [all …]
|
D | IntStreamTestScenario.java | 48 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in STREAM_FOR_EACH_WITH_CLOSE() 60 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in STREAM_TO_ARRAY() 69 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in STREAM_ITERATOR() 78 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in STREAM_SPLITERATOR() 87 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in STREAM_SPLITERATOR_WITH_MIXED_TRAVERSE_AND_SPLIT() 95 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in STREAM_SPLITERATOR_FOREACH() 102 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in PAR_STREAM_SEQUENTIAL_FOR_EACH() 110 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in PAR_STREAM_FOR_EACH_ORDERED() 119 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in PAR_STREAM_SPLITERATOR() 128 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in PAR_STREAM_SPLITERATOR_FOREACH() [all …]
|
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/ |
D | StreamTestScenario.java | 50 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_FOR_EACH_WITH_CLOSE() 63 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_COLLECT() 73 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_TO_ARRAY() 83 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_ITERATOR() 92 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_SPLITERATOR() 100 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_SPLITERATOR_WITH_MIXED_TRAVERSE_AND_SPLIT() 108 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in STREAM_SPLITERATOR_FOREACH() 116 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in PAR_STREAM_SEQUENTIAL_FOR_EACH() 124 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in PAR_STREAM_FOR_EACH_ORDERED() 133 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) { in PAR_STREAM_SPLITERATOR() [all …]
|
D | IntStreamTestScenario.java | 51 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in STREAM_FOR_EACH_WITH_CLOSE() 63 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in STREAM_TO_ARRAY() 72 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in STREAM_ITERATOR() 81 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in STREAM_SPLITERATOR() 90 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in STREAM_SPLITERATOR_WITH_MIXED_TRAVERSE_AND_SPLIT() 98 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in STREAM_SPLITERATOR_FOREACH() 105 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in PAR_STREAM_SEQUENTIAL_FOR_EACH() 113 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in PAR_STREAM_FOR_EACH_ORDERED() 122 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in PAR_STREAM_SPLITERATOR() 131 void _run(TestData<T, S_IN> data, IntConsumer b, Function<S_IN, IntStream> m) { in PAR_STREAM_SPLITERATOR_FOREACH() [all …]
|
D | LongStreamTestScenario.java | 51 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in STREAM_FOR_EACH_WITH_CLOSE() 63 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in STREAM_TO_ARRAY() 72 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in STREAM_ITERATOR() 81 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in STREAM_SPLITERATOR() 90 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in STREAM_SPLITERATOR_WITH_MIXED_TRAVERSE_AND_SPLIT() 98 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in STREAM_SPLITERATOR_FOREACH() 105 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in PAR_STREAM_SEQUENTIAL_FOR_EACH() 113 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in PAR_STREAM_FOR_EACH_ORDERED() 122 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in PAR_STREAM_SPLITERATOR() 131 void _run(TestData<T, S_IN> data, LongConsumer b, Function<S_IN, LongStream> m) { in PAR_STREAM_SPLITERATOR_FOREACH() [all …]
|
D | DoubleStreamTestScenario.java | 52 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in STREAM_FOR_EACH_WITH_CLOSE() 64 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in STREAM_TO_ARRAY() 73 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in STREAM_ITERATOR() 82 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in STREAM_SPLITERATOR() 91 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in STREAM_SPLITERATOR_WITH_MIXED_TRAVERSE_AND_SPLIT() 99 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in STREAM_SPLITERATOR_FOREACH() 106 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in PAR_STREAM_SEQUENTIAL_FOR_EACH() 114 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in PAR_STREAM_FOR_EACH_ORDERED() 123 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in PAR_STREAM_SPLITERATOR() 132 void _run(TestData<T, S_IN> data, DoubleConsumer b, Function<S_IN, DoubleStream> m) { in PAR_STREAM_SPLITERATOR_FOREACH() [all …]
|
/libcore/luni/src/test/java/libcore/java/lang/invoke/ |
D | ExplicitCastArgumentsTest.java | 128 MethodHandle m = in explicitCastVoidReturnValue() local 4598 MethodHandle m = explicitCastArgumentToIdentity(boolean.class, Boolean.class); in nullBooleanArgumentToZ() local 4604 MethodHandle m = explicitCastArgumentToIdentity(byte.class, Boolean.class); in nullBooleanArgumentToB() local 4610 MethodHandle m = explicitCastArgumentToIdentity(char.class, Boolean.class); in nullBooleanArgumentToC() local 4616 MethodHandle m = explicitCastArgumentToIdentity(short.class, Boolean.class); in nullBooleanArgumentToS() local 4622 MethodHandle m = explicitCastArgumentToIdentity(int.class, Boolean.class); in nullBooleanArgumentToI() local 4628 MethodHandle m = explicitCastArgumentToIdentity(long.class, Boolean.class); in nullBooleanArgumentToJ() local 4634 MethodHandle m = explicitCastArgumentToIdentity(float.class, Boolean.class); in nullBooleanArgumentToF() local 4640 MethodHandle m = explicitCastArgumentToIdentity(double.class, Boolean.class); in nullBooleanArgumentToD() local 4646 MethodHandle m = explicitCastArgumentToIdentity(boolean.class, Byte.class); in nullByteArgumentToZ() local [all …]
|
/libcore/ojluni/src/test/java/util/regex/ |
D | RegExTest.java | 116 private static void check(Matcher m, String expected) { in check() 121 private static void check(Matcher m, String result, boolean expected) { in check() 163 Matcher m = p.matcher(s); in check() local 245 final Matcher m = Pattern.compile("xyz").matcher("xyz"); in nullArgumentTest() local 344 Matcher m = p.matcher("squack"); in hitEndTest() local 397 Matcher m = p.matcher(testString); in wordSearchTest() local 484 Matcher m = p.matcher(input); in check() local 970 Matcher m = p.matcher(input); in nonCaptureRepetitionTest() local 1207 Matcher m = p.matcher("ababcdefdec"); in reluctantRepetitionTest() local 1853 Matcher m = p.matcher("zzzzblahzzzzzblah"); in findIntTest() local [all …]
|
/libcore/luni/src/main/java/libcore/icu/ |
D | DateIntervalFormat.java | 58 Method m = getFrameworksDateIntervaFormatMethod(); in formatDateRange() local 99 Method m = cls.getDeclaredMethod("formatDateRange", long.class, long.class, int.class, in getFrameworksDateIntervaFormatMethod() local 111 Method m = cls.getMethod("formatDateRange", Class.forName("android.content.Context"), in getDateUtilsMethod() local
|