Home
last modified time | relevance | path

Searched refs:matcher_ (Results 1 – 15 of 15) sorted by relevance

/external/clang/include/clang/ASTMatchers/
DASTMatchersMacros.h97 class matcher_##DefineMatcher##Matcher \
100 explicit matcher_##DefineMatcher##Matcher() {} \
109 new internal::matcher_##DefineMatcher##Matcher()); \
111 inline bool internal::matcher_##DefineMatcher##Matcher::matches( \
135 class matcher_##DefineMatcher##OverloadId##Matcher \
138 explicit matcher_##DefineMatcher##OverloadId##Matcher( \
153 new internal::matcher_##DefineMatcher##OverloadId##Matcher(Param)); \
157 inline bool internal::matcher_##DefineMatcher##OverloadId##Matcher::matches( \
184 class matcher_##DefineMatcher##OverloadId##Matcher \
187 matcher_##DefineMatcher##OverloadId##Matcher(ParamType1 const &A##Param1, \
[all …]
/external/libtextclassifier/native/utils/
Dregex-match.cc53 : context_(context), verifier_code_(verifier_code), matcher_(matcher) {} in LuaVerifier()
61 const UniLib::RegexMatcher* matcher_; member in libtextclassifier3::__anond36bc88b0111::LuaVerifier
105 const CodepointSpan span = {matcher_->Start(group_id, &status), in GetCapturingGroup()
106 matcher_->End(group_id, &status)}; in GetCapturingGroup()
107 std::string text = matcher_->Group(group_id, &status).ToUTF8String(); in GetCapturingGroup()
/external/google-breakpad/src/testing/include/gmock/
Dgmock-matchers.h1212 : matcher_(matcher) {} in NotMatcherImpl()
1215 return !matcher_.MatchAndExplain(x, listener); in MatchAndExplain()
1219 matcher_.DescribeNegationTo(os); in DescribeTo()
1223 matcher_.DescribeTo(os); in DescribeNegationTo()
1227 const Matcher<T> matcher_;
1237 explicit NotMatcher(InnerMatcher matcher) : matcher_(matcher) {} in NotMatcher()
1243 return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
1247 InnerMatcher matcher_;
1471 explicit MatcherAsPredicate(M matcher) : matcher_(matcher) {} in MatcherAsPredicate()
1495 return MatcherCast<const T&>(matcher_).Matches(x); in operator()
[all …]
/external/libtextclassifier/native/utils/utf8/
Dunilib-javaicu.cc226 matcher_(std::move(matcher)), in RegexMatcher()
233 matcher_.get(), jni_cache_->matcher_matches); in Matches()
248 jni_cache_->GetEnv()->CallObjectMethod(matcher_.get(), in ApproximatelyMatches()
260 matcher_.get(), jni_cache_->matcher_start_idx, 0); in ApproximatelyMatches()
267 matcher_.get(), jni_cache_->matcher_end_idx, 0); in ApproximatelyMatches()
293 matcher_.get(), jni_cache_->matcher_start_idx, 0); in UpdateLastFindOffset()
315 matcher_.get(), jni_cache_->matcher_find); in Find()
344 matcher_.get(), jni_cache_->matcher_start_idx, group_idx); in Start()
384 matcher_.get(), jni_cache_->matcher_end_idx, group_idx); in End()
414 JniHelper::CallObjectMethod<jstring>(jenv, matcher_.get(), in Group()
[all …]
Dunilib-javaicu.h130 ScopedGlobalRef<jobject> matcher_; variable
/external/googletest/googlemock/include/gmock/
Dgmock-matchers.h957 : matcher_(matcher) {}
961 return !matcher_.MatchAndExplain(x, listener);
965 matcher_.DescribeNegationTo(os);
969 matcher_.DescribeTo(os);
973 const Matcher<T> matcher_;
983 explicit NotMatcher(InnerMatcher matcher) : matcher_(matcher) {}
989 return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
993 InnerMatcher matcher_;
1246 explicit MatcherAsPredicate(M matcher) : matcher_(matcher) {}
1270 return MatcherCast<const T&>(matcher_).Matches(x);
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-matchers.h1447 : matcher_(matcher) {}
1450 return !matcher_.MatchAndExplain(x, listener);
1454 matcher_.DescribeNegationTo(os);
1458 matcher_.DescribeTo(os);
1462 const Matcher<T> matcher_;
1472 explicit NotMatcher(InnerMatcher matcher) : matcher_(matcher) {}
1478 return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
1482 InnerMatcher matcher_;
1798 explicit MatcherAsPredicate(M matcher) : matcher_(matcher) {}
1822 return MatcherCast<const T&>(matcher_).Matches(x);
[all …]
/external/libtextclassifier/native/annotator/datetime/
Dextractor.h56 matcher_(matcher), in DatetimeExtractor()
103 const UniLib::RegexMatcher& matcher_; variable
Dextractor.cc237 *result = matcher_.Group(group_id, &status); in GroupTextFromMatch()
247 const int match_start = matcher_.Start(group_id, &status); in UpdateMatchSpan()
251 const int match_end = matcher_.End(group_id, &status); in UpdateMatchSpan()
/external/catch2/docs/
Dassertions.md125 * **REQUIRE_THROWS_WITH(** _expression_, _string or string matcher_ **)** and
126 * **CHECK_THROWS_WITH(** _expression_, _string or string matcher_ **)**
128 …hrown that, when converted to a string, matches the _string_ or _string matcher_ provided (see nex…
/external/libaom/libaom/third_party/googletest/src/googletest/src/
Dgtest-death-test.cc399 : statement_(a_statement), matcher_(std::move(matcher)), spawned_(false), in DeathTestImpl()
434 Matcher<const std::string &> matcher_; member in testing::internal::DeathTestImpl
584 if (matcher_.Matches(error_message)) { in Passed()
588 matcher_.DescribeTo(&stream); in Passed()
/external/mesa3d/src/gtest/src/
Dgtest-death-test.cc401 matcher_(std::move(matcher)), in DeathTestImpl()
440 Matcher<const std::string&> matcher_; member in testing::internal::DeathTestImpl
594 if (matcher_.Matches(error_message)) { in Passed()
598 matcher_.DescribeTo(&stream); in Passed()
/external/googletest/googletest/src/
Dgtest-death-test.cc401 matcher_(std::move(matcher)), in DeathTestImpl()
440 Matcher<const std::string&> matcher_; member in testing::internal::DeathTestImpl
594 if (matcher_.Matches(error_message)) { in Passed()
598 matcher_.DescribeTo(&stream); in Passed()
/external/fmtlib/test/gmock/
Dgmock.h6029 : matcher_(matcher) {}
6032 return !matcher_.MatchAndExplain(x, listener);
6036 matcher_.DescribeNegationTo(os);
6040 matcher_.DescribeTo(os);
6044 const Matcher<T> matcher_;
6054 explicit NotMatcher(InnerMatcher matcher) : matcher_(matcher) {}
6060 return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
6064 InnerMatcher matcher_;
6380 explicit MatcherAsPredicate(M matcher) : matcher_(matcher) {}
6404 return MatcherCast<const T&>(matcher_).Matches(x);
[all …]
/external/v8/src/compiler/backend/arm64/
Dinstruction-selector-arm64.cc2410 : matches_(false), cont_(cont), matcher_(node) { in TestAndBranchMatcher()
2417 return base::bits::CountTrailingZeros(matcher_.right().ResolvedValue()); in bit()
2422 return matcher_.left().node(); in input()
2428 Matcher matcher_; member
2432 matcher_.right().HasResolvedValue() && in Initialize()
2433 base::bits::IsPowerOfTwo(matcher_.right().ResolvedValue())) { in Initialize()