/external/llvm-project/clang/include/clang/ASTMatchers/ |
D | ASTMatchersMacros.h | 96 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/ |
D | ASTMatchersMacros.h | 97 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/ |
D | Matchers.h | 134 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/ |
D | video_frame_matcher.cc | 134 : 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()
|
D | video_frame_matcher.h | 90 VideoFrameMatcher* const matcher_; variable 115 VideoFrameMatcher* const matcher_; variable 129 VideoFrameMatcher* const matcher_; variable
|
D | video_stream.h | 110 VideoFrameMatcher* matcher() { return &matcher_; } in matcher() 120 VideoFrameMatcher matcher_; variable
|
D | video_stream.cc | 628 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/ |
D | peer_scenario.h | 100 : 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/ |
D | regex-match.cc | 53 : 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/ |
D | unilib-javaicu.cc | 233 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 …]
|
D | unilib-javaicu.h | 136 ScopedGlobalRef<jobject> matcher_; variable
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-matchers.h | 1203 : 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/ |
D | gmock-matchers.h | 1449 : 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/ |
D | extractor.h | 56 matcher_(matcher), in DatetimeExtractor() 113 const UniLib::RegexMatcher& matcher_; variable
|
D | extractor.cc | 252 *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/ |
D | debug_mode_helper.h | 148 DeathTest(DebugInfoMatcher const& Matcher) : matcher_(Matcher) {} in DeathTest() 183 GlobalMatcher() = matcher_; in RunForChild() 246 DebugInfoMatcher matcher_;
|
/external/catch2/docs/ |
D | assertions.md | 125 * **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/ |
D | gtest-death-test.cc | 400 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/ |
D | gtest-death-test.cc | 401 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/ |
D | gtest-death-test.cc | 402 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/ |
D | gtest-death-test.cc | 399 : 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/ |
D | gmock.h | 6266 : 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/ |
D | gmock.h | 6029 : 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/ |
D | server.h | 294 RequestMatcherInterface* matcher_ = nullptr; variable
|
D | server.cc | 1283 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()
|