Home
last modified time | relevance | path

Searched defs:matcher (Results 1 – 25 of 129) sorted by relevance

123456

/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DLocaleMatcherTest.java82 LocaleMatcher matcher = newLocaleMatcher(further + ", " + closer); in assertCloser() local
90 LocaleMatcher matcher = newLocaleMatcher("zh_CN, zh_TW, iw"); in testChinese() local
104 final LocaleMatcher matcher = newLocaleMatcher("fr, en, en_GB, es_MX, es_419, es"); in testenGB() local
114 final LocaleMatcher matcher = newLocaleMatcher(lpl); in testFallbacks() local
120 LocaleMatcher matcher = newLocaleMatcher( in testBasics() local
184 LocaleMatcher matcher = LocaleMatcher.builder(). in testSupportedDefault() local
208 LocaleMatcher matcher = LocaleMatcher.builder(). in testUnsupportedDefault() local
230 final LocaleMatcher matcher = newLocaleMatcher("zh_CN, zh_TW, iw"); in testFallback() local
241 final LocaleMatcher matcher = newLocaleMatcher("en, fil, ro, nn"); in testSpecials() local
252 final LocaleMatcher matcher = newLocaleMatcher("en, en_GB, es, es_419"); in testRegionalSpecials() local
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DLocaleMatcherTest.java79 LocaleMatcher matcher = newLocaleMatcher(further + ", " + closer); in assertCloser() local
87 LocaleMatcher matcher = newLocaleMatcher("zh_CN, zh_TW, iw"); in testChinese() local
101 final LocaleMatcher matcher = newLocaleMatcher("fr, en, en_GB, es_MX, es_419, es"); in testenGB() local
111 final LocaleMatcher matcher = newLocaleMatcher(lpl); in testFallbacks() local
117 LocaleMatcher matcher = newLocaleMatcher( in testBasics() local
181 LocaleMatcher matcher = LocaleMatcher.builder(). in testSupportedDefault() local
205 LocaleMatcher matcher = LocaleMatcher.builder(). in testUnsupportedDefault() local
229 LocaleMatcher matcher = LocaleMatcher.builder(). in testNoDefault() local
251 final LocaleMatcher matcher = newLocaleMatcher("zh_CN, zh_TW, iw"); in testFallback() local
262 final LocaleMatcher matcher = newLocaleMatcher("en, fil, ro, nn"); in testSpecials() local
[all …]
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/internal/
DMatcherTest.java31 private void checkMatcherBehavesAsExpected(MatcherApi matcher) { in checkMatcherBehavesAsExpected()
68 private void assertMatched(MatcherApi matcher, String number, PhoneNumberDesc desc) { in assertMatched()
75 private void assertInvalid(MatcherApi matcher, String number, PhoneNumberDesc desc) { in assertInvalid()
82 private void assertTooLong(MatcherApi matcher, String number, PhoneNumberDesc desc) { in assertTooLong()
/third_party/libphonenumber/cpp/test/phonenumbers/
Dphonenumbermatcher_test.cc107 scoped_ptr<PhoneNumberMatcher> matcher; in DoTestNumberMatchesForLeniency() local
130 scoped_ptr<PhoneNumberMatcher> matcher; in DoTestNumberNonMatchesForLeniency() local
155 PhoneNumberMatcher matcher(phone_util_, sub, RegionCode::NZ(), in AssertEqualRange() local
194 PhoneNumberMatcher matcher(text, region); in FindMatchesInContexts() local
204 PhoneNumberMatcher matcher(phone_util_, text, region, in FindMatchesInContexts() local
295 PhoneNumberMatcher matcher(phone_util_, text, default_country, leniency, in DoTestInContext() local
321 PhoneNumberMatcher matcher(phone_util_, text, default_country, leniency, in EnsureTermination() local
566 PhoneNumberMatcher matcher(text, RegionCode::US()); in TEST_F() local
591 PhoneNumberMatcher matcher(text, RegionCode::US()); in TEST_F() local
610 scoped_ptr<PhoneNumberMatcher> matcher( in TEST_F() local
[all …]
Dmatcher_test.cc43 const MatcherApi& matcher, in ExpectMatched()
53 const MatcherApi& matcher, in ExpectInvalid()
63 const MatcherApi& matcher, in ExpectTooLong()
119 RegexBasedMatcher matcher; in TEST_F() local
/third_party/icu/icu4c/source/test/intltest/
Dlocalematchertest.cpp99 LocaleMatcher matcher = LocaleMatcher::Builder().build(errorCode); in testEmpty() local
128 LocaleMatcher matcher = LocaleMatcher::Builder(). in testBasics() local
142 LocaleMatcher matcher = LocaleMatcher::Builder(). in testBasics() local
155 LocaleMatcher matcher = LocaleMatcher::Builder(). in testBasics() local
170 LocaleMatcher matcher = LocaleMatcher::Builder(). in testBasics() local
184 LocaleMatcher matcher = LocaleMatcher::Builder(). in testBasics() local
199 LocaleMatcher matcher = LocaleMatcher::Builder(). in testBasics() local
216 LocaleMatcher matcher = LocaleMatcher::Builder(). in testBasics() local
266 LocaleMatcher matcher = LocaleMatcher::Builder(). in testSupportedDefault() local
290 LocaleMatcher matcher = LocaleMatcher::Builder(). in testUnsupportedDefault() local
[all …]
Dregextst.cpp733 RegexMatcher matcher(&pattern, 0, status); in UTextBasic() local
914 RegexMatcher *matcher = pat->matcher(data, status); in API_Match() local
974 RegexMatcher *matcher = pat->matcher(data, status); in API_Match() local
1028 RegexMatcher *matcher = pat->matcher(data, status); in API_Match() local
1236 RegexMatcher matcher("(a+)+b", testString, 0, status); in API_Match() local
1248 RegexMatcher matcher("(a+)+b", testString, 0, status); in API_Match() local
1264 RegexMatcher matcher("(A)+A$", testString, 0, status); in API_Match() local
1291 RegexMatcher matcher("abc", testString, 0, status); in API_Match() local
1335 RegexMatcher *matcher = pat->matcher(data, status); in API_Replace() local
1995 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8() local
[all …]
/third_party/googletest/googletest/include/gtest/
Dgtest-death-test.h172 # define ASSERT_EXIT(statement, predicate, matcher) \ argument
177 # define EXPECT_EXIT(statement, predicate, matcher) \ argument
183 # define ASSERT_DEATH(statement, matcher) \ argument
188 # define EXPECT_DEATH(statement, matcher) \ argument
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
DSeriesMatcher.java21 public void addMatcher(NumberParseMatcher matcher) { in addMatcher()
51 NumberParseMatcher matcher = matchers.get(i); in match() local
107 NumberParseMatcher matcher = matchers.get(i); in postProcess() local
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/
DSeriesMatcher.java23 public void addMatcher(NumberParseMatcher matcher) { in addMatcher()
53 NumberParseMatcher matcher = matchers.get(i); in match() local
109 NumberParseMatcher matcher = matchers.get(i); in postProcess() local
/third_party/googletest/googlemock/include/gmock/
Dgmock-matchers.h455 static Matcher<T> Cast(const Matcher<T>& matcher) { return matcher; } in Cast()
509 inline Matcher<T> MatcherCast(const M& matcher) { in MatcherCast()
530 inline Matcher<T> SafeMatcherCast(const Matcher<U>& matcher) { in SafeMatcherCast()
584 bool MatchPrintAndExplain(Value& value, const Matcher<T>& matcher, in MatchPrintAndExplain()
634 typename std::tuple_element<N - 1, MatcherTuple>::type matcher = in ExplainMatchFailuresTo() local
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
DCldrDataProcessor.java281 private final PathMatcher matcher; field in PrefixBuilder
286 PathMatcher matcher, in PrefixBuilder()
384 private final PathMatcher matcher; field in PrefixAction
391 PathMatcher matcher, in PrefixAction()
413 private final PathMatcher matcher; field in ValueAction
416 ValueAction(PathMatcher matcher, BiConsumer<T, CldrValue> doFn) { in ValueAction()
/third_party/libphonenumber/cpp/src/phonenumbers/
Dregexp_adapter_icu.cc132 const scoped_ptr<RegexMatcher> matcher( in Consume() local
167 const scoped_ptr<RegexMatcher> matcher( in Match() local
190 const scoped_ptr<RegexMatcher> matcher( in Replace() local
/third_party/skia/tests/
DRecordTestUtils.h45 MatchType<DrawT> matcher; in count_instances_of_type() local
54 MatchType<DrawT> matcher; in find_first_instances_of_type() local
/third_party/flutter/skia/tests/
DRecordTestUtils.h45 MatchType<DrawT> matcher; in count_instances_of_type() local
54 MatchType<DrawT> matcher; in find_first_instances_of_type() local
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DRemoveDynamicIndexing.cpp305 DynamicIndexingNodeMatcher &&matcher, in RemoveDynamicIndexingTraverser()
406 IntermNodePatternMatcher matcher( in visitBinary() local
538 bool RemoveDynamicIndexingIf(DynamicIndexingNodeMatcher &&matcher, in RemoveDynamicIndexingIf()
577 DynamicIndexingNodeMatcher matcher = [](TIntermBinary *node) { in RemoveDynamicIndexingOfNonSSBOVectorOrMatrix() local
589 DynamicIndexingNodeMatcher matcher = [](TIntermBinary *node) { in RemoveDynamicIndexingOfSwizzledVector() local
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dnumparse_impl.cpp224 void NumberParserImpl::addMatcher(NumberParseMatcher& matcher) { in addMatcher()
274 const NumberParseMatcher* matcher = fMatchers[i]; in parseGreedyRecursive() local
309 const NumberParseMatcher* matcher = fMatchers[i]; in parseLongestRecursive() local
/third_party/icu/icu4c/source/i18n/
Dnumparse_impl.cpp215 void NumberParserImpl::addMatcher(NumberParseMatcher& matcher) { in addMatcher()
268 const NumberParseMatcher* matcher = fMatchers[i]; in parseGreedy() local
313 const NumberParseMatcher* matcher = fMatchers[i]; in parseLongestRecursive() local
/third_party/skia/third_party/externals/icu/source/i18n/
Dnumparse_impl.cpp215 void NumberParserImpl::addMatcher(NumberParseMatcher& matcher) { in addMatcher()
268 const NumberParseMatcher* matcher = fMatchers[i]; in parseGreedy() local
313 const NumberParseMatcher* matcher = fMatchers[i]; in parseLongestRecursive() local
/third_party/node/deps/icu-small/source/i18n/
Dnumparse_impl.cpp215 void NumberParserImpl::addMatcher(NumberParseMatcher& matcher) { in addMatcher()
268 const NumberParseMatcher* matcher = fMatchers[i]; in parseGreedy() local
313 const NumberParseMatcher* matcher = fMatchers[i]; in parseLongestRecursive() local
/third_party/python/Tools/scripts/
Deptags.py22 matcher = re.compile(expr) variable
Dptags.py28 matcher = re.compile(expr) variable
/third_party/rust/crates/cxx/tests/ui/
Denum_match_without_wildcard.rs11 fn matcher(a: ffi::A) -> u32 { in matcher() function
/third_party/mesa3d/src/gtest/src/
Dgtest-death-test.cc380 Matcher<const std::string&> matcher, const char* file, in Create()
399 DeathTestImpl(const char* a_statement, Matcher<const std::string&> matcher) in DeathTestImpl()
651 WindowsDeathTest(const char* a_statement, Matcher<const std::string&> matcher, in WindowsDeathTest()
815 FuchsiaDeathTest(const char* a_statement, Matcher<const std::string&> matcher, in FuchsiaDeathTest()
1090 Matcher<const std::string&> matcher) in ForkingDeathTest()
1112 NoExecDeathTest(const char* a_statement, Matcher<const std::string&> matcher) in NoExecDeathTest()
1167 ExecDeathTest(const char* a_statement, Matcher<const std::string&> matcher, in ExecDeathTest()
1467 Matcher<const std::string&> matcher, in Create()
/third_party/googletest/googletest/src/
Dgtest-death-test.cc381 Matcher<const std::string&> matcher, const char* file, in Create()
400 DeathTestImpl(const char* a_statement, Matcher<const std::string&> matcher) in DeathTestImpl()
652 WindowsDeathTest(const char* a_statement, Matcher<const std::string&> matcher, in WindowsDeathTest()
816 FuchsiaDeathTest(const char* a_statement, Matcher<const std::string&> matcher, in FuchsiaDeathTest()
1089 Matcher<const std::string&> matcher) in ForkingDeathTest()
1111 NoExecDeathTest(const char* a_statement, Matcher<const std::string&> matcher) in NoExecDeathTest()
1166 ExecDeathTest(const char* a_statement, Matcher<const std::string&> matcher, in ExecDeathTest()
1458 Matcher<const std::string&> matcher, in Create()

123456