Home
last modified time | relevance | path

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

/external/llvm-project/clang/include/clang/ASTMatchers/
DASTMatchersMacros.h96 class matcher_##DefineMatcher##Matcher \
99 explicit matcher_##DefineMatcher##Matcher() = default; \
108 new internal::matcher_##DefineMatcher##Matcher()); \
110 inline bool internal::matcher_##DefineMatcher##Matcher::matches( \
134 class matcher_##DefineMatcher##OverloadId##Matcher \
137 explicit matcher_##DefineMatcher##OverloadId##Matcher( \
152 new internal::matcher_##DefineMatcher##OverloadId##Matcher(Param)); \
156 inline bool internal::matcher_##DefineMatcher##OverloadId##Matcher::matches( \
183 class matcher_##DefineMatcher##OverloadId##Matcher \
186 matcher_##DefineMatcher##OverloadId##Matcher(ParamType1 const &A##Param1, \
[all …]
/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/llvm-project/clang-tools-extra/clangd/unittests/
DMatchers.h134 explicit OptionalMatcher(const InnerMatcher &matcher) : matcher_(matcher) {} in OptionalMatcher()
144 return MakeMatcher(new Impl<Optional>(matcher_));
156 : matcher_(::testing::MatcherCast<const Value &>(matcher)) {} in Impl()
160 matcher_.DescribeTo(os); in DescribeTo()
165 matcher_.DescribeTo(os); in DescribeNegationTo()
175 return MatchPrintAndExplain(*optional, matcher_, listener); in MatchAndExplain()
179 const Matcher<const Value &> matcher_;
184 const InnerMatcher matcher_; variable
/external/webrtc/test/scenario/
Dvideo_frame_matcher.cc134 : clock_(clock), matcher_(matcher) {} in CapturedFrameTap()
137 matcher_->OnCapturedFrame(frame, clock_->CurrentTime()); in OnFrame()
147 : clock_(clock), matcher_(matcher), source_(source) {} in ForwardingCapturedFrameTap()
151 matcher_->OnCapturedFrame(frame, clock_->CurrentTime()); in OnFrame()
177 : clock_(clock), matcher_(matcher), layer_id_(layer_id) { in DecodedFrameTap()
178 matcher_->RegisterLayer(layer_id_); in DecodedFrameTap()
182 matcher_->OnDecodedFrame(frame, layer_id_, in OnFrame()
Dvideo_frame_matcher.h90 VideoFrameMatcher* const matcher_; variable
115 VideoFrameMatcher* const matcher_; variable
129 VideoFrameMatcher* const matcher_; variable
Dvideo_stream.h110 VideoFrameMatcher* matcher() { return &matcher_; } in matcher()
120 VideoFrameMatcher matcher_; variable
Dvideo_stream.cc628 matcher_(config.hooks.frame_pair_handlers), in VideoStreamPair()
629 send_stream_(sender, config, sender->transport_.get(), &matcher_), in VideoStreamPair()
635 &matcher_) {} in VideoStreamPair()
/external/webrtc/test/peer_scenario/
Dpeer_scenario.h100 : matcher_({analyzer->Handler()}), in PeerVideoQualityPair()
101 capture_tap_(capture_clock, &matcher_),
102 decode_tap_(capture_clock, &matcher_, 0) {}
103 VideoFrameMatcher matcher_; member
/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::__anon553ad1e70111::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/libtextclassifier/native/utils/utf8/
Dunilib-javaicu.cc233 matcher_(std::move(matcher)), in RegexMatcher()
240 matcher_.get(), jni_cache_->matcher_matches); in Matches()
255 jni_cache_->GetEnv()->CallObjectMethod(matcher_.get(), in ApproximatelyMatches()
267 matcher_.get(), jni_cache_->matcher_start_idx, 0); in ApproximatelyMatches()
274 matcher_.get(), jni_cache_->matcher_end_idx, 0); in ApproximatelyMatches()
300 matcher_.get(), jni_cache_->matcher_start_idx, 0); in UpdateLastFindOffset()
322 matcher_.get(), jni_cache_->matcher_find); in Find()
351 matcher_.get(), jni_cache_->matcher_start_idx, group_idx); in Start()
391 matcher_.get(), jni_cache_->matcher_end_idx, group_idx); in End()
421 JniHelper::CallObjectMethod<jstring>(jenv, matcher_.get(), in Group()
[all …]
Dunilib-javaicu.h136 ScopedGlobalRef<jobject> matcher_; variable
/external/googletest/googlemock/include/gmock/
Dgmock-matchers.h1203 : matcher_(matcher) {}
1207 return !matcher_.MatchAndExplain(x, listener);
1211 matcher_.DescribeNegationTo(os);
1215 matcher_.DescribeTo(os);
1219 const Matcher<T> matcher_;
1227 explicit NotMatcher(InnerMatcher matcher) : matcher_(matcher) {}
1233 return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
1237 InnerMatcher matcher_;
1482 explicit MatcherAsPredicate(M matcher) : matcher_(matcher) {}
1506 return MatcherCast<const T&>(matcher_).Matches(x);
[all …]
/external/llvm-project/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-matchers.h1449 : matcher_(matcher) {}
1452 return !matcher_.MatchAndExplain(x, listener);
1456 matcher_.DescribeNegationTo(os);
1460 matcher_.DescribeTo(os);
1464 const Matcher<T> matcher_;
1474 explicit NotMatcher(InnerMatcher matcher) : matcher_(matcher) {}
1480 return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
1484 InnerMatcher matcher_;
1800 explicit MatcherAsPredicate(M matcher) : matcher_(matcher) {}
1824 return MatcherCast<const T&>(matcher_).Matches(x);
[all …]
/external/libtextclassifier/native/annotator/datetime/
Dextractor.h56 matcher_(matcher), in DatetimeExtractor()
113 const UniLib::RegexMatcher& matcher_; variable
Dextractor.cc252 *result = matcher_.Group(group_id, &status); in GroupTextFromMatch()
262 const int match_start = matcher_.Start(group_id, &status); in UpdateMatchSpan()
266 const int match_end = matcher_.End(group_id, &status); in UpdateMatchSpan()
/external/llvm-project/libcxx/test/support/
Ddebug_mode_helper.h148 DeathTest(DebugInfoMatcher const& Matcher) : matcher_(Matcher) {} in DeathTest()
183 GlobalMatcher() = matcher_; in RunForChild()
246 DebugInfoMatcher matcher_;
/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/rust/crates/quiche/deps/boringssl/src/third_party/googletest/src/
Dgtest-death-test.cc400 matcher_(std::move(matcher)), in DeathTestImpl()
439 Matcher<const std::string&> matcher_; member in testing::internal::DeathTestImpl
593 if (matcher_.Matches(error_message)) { in Passed()
597 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.cc402 matcher_(std::move(matcher)), in DeathTestImpl()
441 Matcher<const std::string&> matcher_; member in testing::internal::DeathTestImpl
595 if (matcher_.Matches(error_message)) { in Passed()
599 matcher_.DescribeTo(&stream); in Passed()
/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/rust/crates/grpcio-sys/grpc/third_party/cares/cares/test/gmock-1.8.0/gmock/
Dgmock.h6266 : matcher_(matcher) {}
6269 return !matcher_.MatchAndExplain(x, listener);
6273 matcher_.DescribeNegationTo(os);
6277 matcher_.DescribeTo(os);
6281 const Matcher<T> matcher_;
6291 explicit NotMatcher(InnerMatcher matcher) : matcher_(matcher) {}
6297 return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
6301 InnerMatcher matcher_;
6617 explicit MatcherAsPredicate(M matcher) : matcher_(matcher) {}
6641 return MatcherCast<const T&>(matcher_).Matches(x);
[all …]
/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/rust/crates/grpcio-sys/grpc/src/core/lib/surface/
Dserver.h294 RequestMatcherInterface* matcher_ = nullptr; variable
Dserver.cc1283 RequestMatcherInterface* rm = calld->matcher_; in PublishNewRpc()
1316 matcher_ = server_->unregistered_request_matcher_.get(); in StartNewRpc()
1325 matcher_ = rm->server_registered_method->matcher.get(); in StartNewRpc()