/external/proguard/src/proguard/util/ |
D | AndMatcher.java | 32 private final StringMatcher matcher2; field in AndMatcher 35 public AndMatcher(StringMatcher matcher1, StringMatcher matcher2) in AndMatcher() argument 38 this.matcher2 = matcher2; in AndMatcher() 47 matcher2.matches(string); in matches()
|
D | OrMatcher.java | 32 private final StringMatcher matcher2; field in OrMatcher 35 public OrMatcher(StringMatcher matcher1, StringMatcher matcher2) in OrMatcher() argument 38 this.matcher2 = matcher2; in OrMatcher() 47 matcher2.matches(string); in matches()
|
/external/openfst/src/include/fst/extensions/pdt/ |
D | compose.h | 43 using COptions::matcher2; 50 matcher2 = new PdtMatcher(ifst2, MATCH_INPUT, kMultiEpsLoop); in PdtComposeOptions() 56 matcher2->AddMultiEpsLabel(parens[i].first); in PdtComposeOptions() 57 matcher2->AddMultiEpsLabel(parens[i].second); in PdtComposeOptions() 60 filter = new PdtFilter(ifst1, ifst2, matcher1, matcher2, true); in PdtComposeOptions() 79 using COptions::matcher2; 86 matcher2 = new PdtMatcher(ifst2, MATCH_INPUT, kMultiEpsList); in PdtComposeOptions() 92 matcher2->AddMultiEpsLabel(parens[i].first); in PdtComposeOptions() 93 matcher2->AddMultiEpsLabel(parens[i].second); in PdtComposeOptions() 96 filter = new PdtFilter(ifst1, ifst2, matcher1, matcher2, true); in PdtComposeOptions()
|
/external/openfst/src/include/fst/ |
D | compose-filter.h | 221 M1 *matcher1 = 0, M2 *matcher2 = 0) 223 matcher2_(matcher2 ? matcher2 : new M2(fst2, MATCH_INPUT)), 306 M1 *matcher1 = 0, M2 *matcher2 = 0) 308 matcher2_(matcher2 ? matcher2 : new M2(fst2, MATCH_INPUT)), 392 M1 *matcher1 = 0, M2 *matcher2 = 0) 394 matcher2_(matcher2 ? matcher2 : new M2(fst2, MATCH_INPUT)), 495 Matcher1 *matcher1 = 0, Matcher2 *matcher2 = 0, 497 : filter_(fst1, fst2, matcher1, matcher2), in filter_() argument
|
D | compose.h | 54 M *matcher2; // FST2 matcher member 61 : CacheOptions(opts), matcher1(mat1), matcher2(mat2), in CacheOptions() 64 ComposeFstOptions() : matcher1(0), matcher2(0), filter(0), state_table(0) {} in ComposeFstOptions() 85 M2 *matcher2; // FST2 matcher member 92 : CacheOptions(opts), matcher1(mat1), matcher2(mat2), in CacheOptions() 96 : matcher1(0), matcher2(0), filter(0), state_table(0) {} in ComposeFstImplOptions() 381 new F(fst1, fst2, opts.matcher1, opts.matcher2)), in ComposeFstImpl() 531 ComposeFstImplOptions<M, M, F, T> nopts(opts, opts.matcher1, opts.matcher2, in CreateBase1()
|
D | lookahead-filter.h | 63 LookAheadMatcher< Fst <Arc> > matcher2(fst2, MATCH_INPUT); in LookAheadMatchType() 64 return LookAheadMatchType(matcher1, matcher2); in LookAheadMatchType() 212 M1 *matcher1, M2 *matcher2) in LookAheadComposeFilter() argument 213 : filter_(fst1, fst2, matcher1, matcher2), in LookAheadComposeFilter() 346 M1 *matcher1, M2 *matcher2) in PushWeightsComposeFilter() argument 347 : filter_(fst1, fst2, matcher1, matcher2), in PushWeightsComposeFilter() 440 M1 *matcher1, M2 *matcher2) in PushLabelsComposeFilter() argument 441 : filter_(fst1, fst2, matcher1, matcher2), in PushLabelsComposeFilter()
|
D | difference.h | 98 copts.matcher2 = new R(cfst, MATCH_INPUT, ComplementFst<A>::kRhoLabel, in DifferenceFst() 99 MATCHER_REWRITE_ALWAYS, opts.matcher2); in DifferenceFst()
|
/external/icu4c/test/intltest/ |
D | regextst.cpp | 1395 RegexMatcher *matcher2 = pat2->matcher(d5, status); in API_Replace() local 1397 dest = matcher2->replaceFirst("$1$1", status); in API_Replace() 1401 dest = matcher2->replaceFirst(UNICODE_STRING_SIMPLE("The value of \\$1 is $1."), status); in API_Replace() 1405 dest = matcher2->replaceFirst("$ by itself, no group number $$$", status); in API_Replace() 1411 dest = matcher2->replaceFirst(replacement, status); in API_Replace() 1415 …REGEX_ASSERT_FAIL(matcher2->replaceFirst("bad capture group number $5...",status), U_INDEX_OUTOFBO… in API_Replace() 1484 delete matcher2; in API_Replace() 2555 RegexMatcher *matcher2 = &pat2->matcher(status)->reset(&dataText); in API_Replace_UTF8() local 2560 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8() 2566 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8() [all …]
|
/external/chromium/testing/gmock/include/gmock/ |
D | gmock-matchers.h | 1213 BothOfMatcherImpl(const Matcher<T>& matcher1, const Matcher<T>& matcher2) in BothOfMatcherImpl() argument 1214 : matcher1_(matcher1), matcher2_(matcher2) {} in BothOfMatcherImpl() 1274 BothOfMatcher(Matcher1 matcher1, Matcher2 matcher2) in BothOfMatcher() argument 1275 : matcher1_(matcher1), matcher2_(matcher2) {} in BothOfMatcher() 1300 EitherOfMatcherImpl(const Matcher<T>& matcher1, const Matcher<T>& matcher2) in EitherOfMatcherImpl() argument 1301 : matcher1_(matcher1), matcher2_(matcher2) {} in EitherOfMatcherImpl() 1362 EitherOfMatcher(Matcher1 matcher1, Matcher2 matcher2) in EitherOfMatcher() argument 1363 : matcher1_(matcher1), matcher2_(matcher2) {} in EitherOfMatcher()
|
/external/chromium/testing/gmock/test/ |
D | gmock-matchers_test.cc | 3293 Matcher<Uncopyable&> matcher2 = in TEST() local 3296 EXPECT_TRUE(matcher2.Matches(obj)); in TEST() 3297 EXPECT_FALSE(matcher2.Matches(obj2)); in TEST() 3385 Matcher<const int&> matcher2 = ResultOf(ReferencingFunction, Eq(&n)); in TEST() local 3386 EXPECT_TRUE(matcher2.Matches(n)); in TEST() 3387 EXPECT_FALSE(matcher2.Matches(n2)); in TEST()
|