/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | LocaleMatcherTest.java | 77 LocaleMatcher matcher = newLocaleMatcher(further + ", " + closer); in assertCloser() local 110 LocaleMatcher matcher = newLocaleMatcher("zh_CN, zh_TW, iw"); in testChinese() local 123 final LocaleMatcher matcher = newLocaleMatcher("fr, en, en_GB, es_MX, es_419, es"); in testenGB() local 132 final LocaleMatcher matcher = newLocaleMatcher(lpl, null, 0.09); in testFallbacks() local 143 final LocaleMatcher matcher = newLocaleMatcher( in testOverrideData() local 157 …final LocaleMatcher matcher = newLocaleMatcher(LocalePriorityList.add(ULocale.FRENCH).add(ULocale.… in testBasics() local 169 final LocaleMatcher matcher = newLocaleMatcher("zh_CN, zh_TW, iw"); in testFallback() local 179 final LocaleMatcher matcher = newLocaleMatcher("en, fil, ro, nn"); in testSpecials() local 189 final LocaleMatcher matcher = newLocaleMatcher("en, en_GB, es, es_419"); in testRegionalSpecials() local 197 final LocaleMatcher matcher = newLocaleMatcher("zh, zh_TW, zh_MO"); in testHK() local [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | LocaleMatcherTest.java | 81 LocaleMatcher matcher = newLocaleMatcher(further + ", " + closer); in assertCloser() local 114 LocaleMatcher matcher = newLocaleMatcher("zh_CN, zh_TW, iw"); in testChinese() local 127 final LocaleMatcher matcher = newLocaleMatcher("fr, en, en_GB, es_MX, es_419, es"); in testenGB() local 136 final LocaleMatcher matcher = newLocaleMatcher(lpl, null, 0.09); in testFallbacks() local 147 final LocaleMatcher matcher = newLocaleMatcher( in testOverrideData() local 161 …final LocaleMatcher matcher = newLocaleMatcher(LocalePriorityList.add(ULocale.FRENCH).add(ULocale.… in testBasics() local 173 final LocaleMatcher matcher = newLocaleMatcher("zh_CN, zh_TW, iw"); in testFallback() local 183 final LocaleMatcher matcher = newLocaleMatcher("en, fil, ro, nn"); in testSpecials() local 193 final LocaleMatcher matcher = newLocaleMatcher("en, en_GB, es, es_419"); in testRegionalSpecials() local 201 final LocaleMatcher matcher = newLocaleMatcher("zh, zh_TW, zh_MO"); in testHK() local [all …]
|
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
D | CharMatcherTest.java | 107 private void doTestEmpty(CharMatcher matcher) throws Exception { in doTestEmpty() 113 private void reallyTestEmpty(CharMatcher matcher) throws Exception { in reallyTestEmpty() 155 private void doTestNoMatches(CharMatcher matcher, String s) { in doTestNoMatches() 182 private void doTestAllMatches(CharMatcher matcher, String s) { in doTestAllMatches() 193 private void reallyTestNoMatches(CharMatcher matcher, CharSequence s) { in reallyTestNoMatches() 221 private void reallyTestAllMatches(CharMatcher matcher, CharSequence s) { in reallyTestAllMatches() 250 private void doTestGeneral(CharMatcher matcher, char match, char noMatch) { in doTestGeneral() 257 private void doTestOneCharMatch(CharMatcher matcher, String s) { in doTestOneCharMatch() 265 private void doTestOneCharNoMatch(CharMatcher matcher, String s) { in doTestOneCharNoMatch() 273 private void doTestMatchThenNoMatch(CharMatcher matcher, String s) { in doTestMatchThenNoMatch() [all …]
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | CharMatcherTest.java | 133 private void doTestSetBits(CharMatcher matcher) { in doTestSetBits() 170 private void doTestEmpty(CharMatcher matcher) throws Exception { in doTestEmpty() 176 private void reallyTestEmpty(CharMatcher matcher) throws Exception { in reallyTestEmpty() 201 private void doTestNull(CharMatcher matcher) throws Exception { in doTestNull() 224 private void doTestNoMatches(CharMatcher matcher, String s) { in doTestNoMatches() 251 private void doTestAllMatches(CharMatcher matcher, String s) { in doTestAllMatches() 262 private void reallyTestNoMatches(CharMatcher matcher, CharSequence s) { in reallyTestNoMatches() 290 private void reallyTestAllMatches(CharMatcher matcher, CharSequence s) { in reallyTestAllMatches() 319 private void doTestGeneral(CharMatcher matcher, char match, char noMatch) { in doTestGeneral() 326 private void doTestOneCharMatch(CharMatcher matcher, String s) { in doTestOneCharMatch() [all …]
|
/external/mockito/src/org/mockito/ |
D | Matchers.java | 777 public static <T> T argThat(Matcher<T> matcher) { in argThat() 789 public static char charThat(Matcher<Character> matcher) { in charThat() 801 public static boolean booleanThat(Matcher<Boolean> matcher) { in booleanThat() 813 public static byte byteThat(Matcher<Byte> matcher) { in byteThat() 825 public static short shortThat(Matcher<Short> matcher) { in shortThat() 837 public static int intThat(Matcher<Integer> matcher) { in intThat() 849 public static long longThat(Matcher<Long> matcher) { in longThat() 861 public static float floatThat(Matcher<Float> matcher) { in floatThat() 873 public static double doubleThat(Matcher<Double> matcher) { in doubleThat() 877 private static HandyReturnValues reportMatcher(Matcher<?> matcher) { in reportMatcher()
|
/external/junit/src/org/junit/internal/matchers/ |
D | CombinableMatcher.java | 13 public CombinableMatcher(Matcher<? extends T> matcher) { in CombinableMatcher() 26 public CombinableMatcher<T> and(Matcher<? extends T> matcher) { in and() 31 public CombinableMatcher<T> or(Matcher<? extends T> matcher) { in or()
|
/external/hamcrest/src/org/hamcrest/core/ |
D | IsNot.java | 16 private final Matcher<T> matcher; field in IsNot 18 public IsNot(Matcher<T> matcher) { in IsNot() 34 public static <T> Matcher<T> not(Matcher<T> matcher) { in not()
|
D | Is.java | 19 private final Matcher<T> matcher; field in Is 21 public Is(Matcher<T> matcher) { in Is() 41 public static <T> Matcher<T> is(Matcher<T> matcher) { in is()
|
D | DescribedAs.java | 17 private final Matcher<T> matcher; field in DescribedAs 22 public DescribedAs(String descriptionTemplate, Matcher<T> matcher, Object[] values) { in DescribedAs() 52 …public static <T> Matcher<T> describedAs(String description, Matcher<T> matcher, Object... values)… in describedAs()
|
/external/ltrace/ |
D | filter.c | 50 struct filter_lib_matcher *matcher, in filter_rule_init() 76 filter_lib_matcher_name_init(struct filter_lib_matcher *matcher, in filter_lib_matcher_name_init() 93 filter_lib_matcher_main_init(struct filter_lib_matcher *matcher) in filter_lib_matcher_main_init() 99 filter_lib_matcher_destroy(struct filter_lib_matcher *matcher) in filter_lib_matcher_destroy() 128 matcher_matches_library(struct filter_lib_matcher *matcher, struct library *lib) in matcher_matches_library()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/reader/ |
D | ReaderStringTest.java | 27 Matcher matcher = StreamReader.NON_PRINTABLE.matcher("test"); in testCheckPrintable() local 39 Matcher matcher = StreamReader.NON_PRINTABLE.matcher("test\u0005 fail"); in testCheckNonPrintable() local 60 Matcher matcher = StreamReader.NON_PRINTABLE.matcher(str); in testCheckAll() local
|
/external/easymock/src/org/easymock/internal/ |
D | ILegacyMatcherMethods.java | 23 void setDefaultMatcher(org.easymock.ArgumentsMatcher matcher); in setDefaultMatcher() 26 void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher); in setMatcher()
|
D | ExpectedInvocation.java | 34 private final org.easymock.ArgumentsMatcher matcher; field in ExpectedInvocation 45 org.easymock.ArgumentsMatcher matcher) { in ExpectedInvocation() 131 public ExpectedInvocation withMatcher(@SuppressWarnings("deprecation") in withMatcher()
|
/external/proguard/src/proguard/util/ |
D | NotMatcher.java | 31 private final StringMatcher matcher; field in NotMatcher 34 public NotMatcher(StringMatcher matcher) in NotMatcher()
|
D | SettableMatcher.java | 31 private StringMatcher matcher; field in SettableMatcher 34 public void setMatcher(StringMatcher matcher) in setMatcher()
|
/external/v8/test/unittests/compiler/ |
D | node-matchers-unittest.cc | 33 void CheckBaseWithIndexAndDisplacement(Matcher* matcher, Node* index, int scale, in CheckBaseWithIndexAndDisplacement() 739 BranchMatcher matcher(branch); in TEST_F() local 750 BranchMatcher matcher(branch); in TEST_F() local 762 BranchMatcher matcher(branch); in TEST_F() local 778 BranchMatcher matcher(branch); in TEST_F() local 786 BranchMatcher matcher(branch); in TEST_F() local 792 BranchMatcher matcher(zero); in TEST_F() local 818 BranchMatcher matcher(branch); in TEST_F() local 834 DiamondMatcher matcher(merge); in TEST_F() local 847 DiamondMatcher matcher(merge); in TEST_F() local [all …]
|
/external/junit/src/org/junit/rules/ |
D | ExpectedException.java | 69 public void expect(Matcher<?> matcher) { in expect() 96 public void expectMessage(Matcher<String> matcher) { in expectMessage() 123 private Matcher<Throwable> hasMessage(final Matcher<String> matcher) { in hasMessage()
|
D | ErrorCollector.java | 54 public <T> void checkThat(final T value, final Matcher<T> matcher) { in checkThat() 63 public <T> void checkThat(final String reason, final T value, final Matcher<T> matcher) { in checkThat()
|
/external/hamcrest/integration/src/org/hamcrest/ |
D | MatcherAssert.java | 7 public static <T> void assertThat(T actual, Matcher<T> matcher) { in assertThat() 11 public static <T> void assertThat(String reason, T actual, Matcher<T> matcher) { in assertThat()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/util/ |
D | PsiUtil.java | 38 public static PsiElement searchBackward(PsiElement element, PsiMatcherExpression matcher, in searchBackward() 56 public static PsiElement searchForward(PsiElement element, PsiMatcherExpression matcher, in searchForward()
|
/external/jacoco/org.jacoco.examples.test/src/org/jacoco/examples/ |
D | ConsoleOutput.java | 66 public void expect(Matcher<String> matcher) { in expect() 67 assertThat(getContents(), matcher); in expect() local
|
/external/guava/guava-tests/benchmark/com/google/common/base/ |
D | WhitespaceMatcherBenchmark.java | 55 private CharMatcher matcher; field in WhitespaceMatcherBenchmark 75 CharMatcher matcher = this.matcher; in countIn() local 85 CharMatcher matcher = this.matcher; in collapseFrom() local
|
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ |
D | DefaultRule.java | 28 protected final SourceMatcher matcher; field in DefaultRule 34 public DefaultRule(Processor processor, SourceMatcher matcher, boolean mustModify) { in DefaultRule()
|
/external/hamcrest/src/org/hamcrest/ |
D | CoreMatchers.java | 13 public static <T> org.hamcrest.Matcher<T> is(org.hamcrest.Matcher<T> matcher) { in is() 40 public static <T> org.hamcrest.Matcher<T> not(org.hamcrest.Matcher<T> matcher) { in not() 161 …amcrest.Matcher<T> describedAs(java.lang.String description, org.hamcrest.Matcher<T> matcher, java… in describedAs()
|
/external/junit/src/org/junit/matchers/ |
D | JUnitMatchers.java | 70 public static <T> CombinableMatcher<T> both(Matcher<T> matcher) { in both() 80 public static <T> CombinableMatcher<T> either(Matcher<T> matcher) { in either()
|