Home
last modified time | relevance | path

Searched defs:Matcher (Results 1 – 25 of 49) sorted by relevance

12

/external/googletest/googletest/src/
Dgtest-matchers.cc45 Matcher<const std::string&>::Matcher(const std::string& s) { *this = Eq(s); } in Matcher() function in testing::Matcher::string
50 Matcher<const std::string&>::Matcher(const ::string& s) { in Matcher() function in testing::Matcher::string
57 Matcher<const std::string&>::Matcher(const char* s) { in Matcher() function in testing::Matcher::string
63 Matcher<std::string>::Matcher(const std::string& s) { *this = Eq(s); } in Matcher() function in testing::Matcher::string
68 Matcher<std::string>::Matcher(const ::string& s) { in Matcher() function in testing::Matcher::string
75 Matcher<std::string>::Matcher(const char* s) { *this = Eq(std::string(s)); } in Matcher() function in testing::Matcher::string
80 Matcher<const ::string&>::Matcher(const std::string& s) { in Matcher() function in testing::Matcher::string
86 Matcher<const ::string&>::Matcher(const ::string& s) { *this = Eq(s); } in Matcher() function in testing::Matcher::string
90 Matcher<const ::string&>::Matcher(const char* s) { *this = Eq(::string(s)); } in Matcher() function in testing::Matcher::string
93 Matcher<::string>::Matcher(const std::string& s) { in Matcher() function in testing::Matcher::string
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Testing/Support/
DError.h36 explicit ValueMatchesMono(const testing::Matcher<T> &Matcher) in ValueMatchesMono()
73 explicit ValueMatchesPoly(const M &Matcher) : Matcher(Matcher) {} in ValueMatchesPoly()
88 explicit ErrorMatchesMono(Optional<testing::Matcher<InfoT &>> Matcher) in ErrorMatchesMono()
134 #define EXPECT_THAT_ERROR(Err, Matcher) \ argument
136 #define ASSERT_THAT_ERROR(Err, Matcher) \ argument
139 #define EXPECT_THAT_EXPECTED(Err, Matcher) \ argument
141 #define ASSERT_THAT_EXPECTED(Err, Matcher) \ argument
153 testing::Matcher<const detail::ErrorHolder &> Failed(M Matcher) { in Failed()
159 detail::ValueMatchesPoly<M> HasValue(M Matcher) { in HasValue()
/external/google-breakpad/src/testing/src/
Dgmock-matchers.cc48 Matcher<const internal::string&>::Matcher(const internal::string& s) { in Matcher() function in testing::Matcher::string
54 Matcher<const internal::string&>::Matcher(const char* s) { in Matcher() function in testing::Matcher::string
59 Matcher<internal::string>::Matcher(const internal::string& s) { *this = Eq(s); } in Matcher() function in testing::Matcher::string
62 Matcher<internal::string>::Matcher(const char* s) { in Matcher() function in testing::Matcher::string
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/src/
Dgmock-matchers.cc48 Matcher<const internal::string&>::Matcher(const internal::string& s) { in Matcher() function in testing::Matcher::string
54 Matcher<const internal::string&>::Matcher(const char* s) { in Matcher() function in testing::Matcher::string
59 Matcher<internal::string>::Matcher(const internal::string& s) { *this = Eq(s); } in Matcher() function in testing::Matcher::string
62 Matcher<internal::string>::Matcher(const char* s) { in Matcher() function in testing::Matcher::string
69 Matcher<const StringPiece&>::Matcher(const internal::string& s) { in Matcher() function in testing::Matcher
75 Matcher<const StringPiece&>::Matcher(const char* s) { in Matcher() function in testing::Matcher
81 Matcher<const StringPiece&>::Matcher(StringPiece s) { in Matcher() function in testing::Matcher
86 Matcher<StringPiece>::Matcher(const internal::string& s) { in Matcher() function in testing::Matcher
91 Matcher<StringPiece>::Matcher(const char* s) { in Matcher() function in testing::Matcher
96 Matcher<StringPiece>::Matcher(StringPiece s) { in Matcher() function in testing::Matcher
/external/googletest/googletest/include/gtest/
Dgtest-matchers.h322 explicit Matcher() {} // NOLINT in Matcher() function
325 explicit Matcher(const MatcherInterface<const T&>* impl) in Matcher() function
346 Matcher() {} in Matcher() function
348 explicit Matcher(const MatcherInterface<const std::string&>* impl) in Matcher() function
369 Matcher() {} in Matcher() function
371 explicit Matcher(const MatcherInterface<const std::string&>* impl) in Matcher() function
373 explicit Matcher(const MatcherInterface<std::string>* impl) in Matcher() function
398 Matcher() {} in Matcher() function
400 explicit Matcher(const MatcherInterface<const ::string&>* impl) in Matcher() function
419 Matcher() {} in Matcher() function
[all …]
/external/clang/unittests/ASTMatchers/
DASTMatchersNodeTest.cpp172 DeclarationMatcher Matcher = enumConstantDecl(hasName("A")); in TEST() local
178 TEST(Matcher, UnresolvedLookupExpr) { in TEST() argument
192 TEST(Matcher, Call) { in TEST() argument
239 TEST(Matcher, Lambda) { in TEST() argument
244 TEST(Matcher, ForRange) { in TEST() argument
252 TEST(Matcher, SubstNonTypeTemplateParm) { in TEST() argument
263 TEST(Matcher, NonTypeTemplateParmDecl) { in TEST() argument
270 TEST(Matcher, templateTypeParmDecl) { in TEST() argument
277 TEST(Matcher, UserDefinedLiteral) { in TEST() argument
285 TEST(Matcher, FlowControl) { in TEST() argument
[all …]
DASTMatchersNarrowingTest.cpp546 TEST(Matcher, BindMatchedNodes) { in TEST() argument
570 TEST(Matcher, BindTheSameNameInAlternatives) { in TEST() argument
587 TEST(Matcher, BindsIDForMemoizedResults) { in TEST() argument
612 TEST(Matcher, HasOperatorNameForOverloadedOperatorCall) { in TEST() argument
640 TEST(Matcher, NestedOverloadedOperatorCalls) { in TEST() argument
658 TEST(Matcher, VarDecl_Storage) { in TEST() argument
670 TEST(Matcher, VarDecl_StorageDuration) { in TEST() argument
693 TEST(Matcher, FindsVarDeclInFunctionParameter) { in TEST() argument
793 TEST(Matcher, ArgumentCount) { in TEST() argument
801 TEST(Matcher, ParameterCount) { in TEST() argument
[all …]
DASTMatchersInternalTest.cpp174 TEST(Matcher, matchOverEntireASTContext) { in TEST() argument
194 TEST(Matcher, IsExpansionInMainFileMatcher) { in TEST() argument
205 TEST(Matcher, IsExpansionInSystemHeader) { in TEST() argument
219 TEST(Matcher, IsExpansionInFileMatching) { in TEST() argument
DASTMatchersTraversalTest.cpp334 TEST(Matcher, Argument) { in TEST() argument
348 TEST(Matcher, AnyArgument) { in TEST() argument
538 TEST(Matcher, MatchesTypeTemplateArgument) { in TEST() argument
546 TEST(Matcher, MatchesDeclarationReferenceTemplateArgument) { in TEST() argument
575 TEST(Matcher, MatchesSpecificArgument) { in TEST() argument
757 TEST(Matcher, BinaryOperatorTypes) { in TEST() argument
873 TEST(Matcher, UnaryOperatorTypes) { in TEST() argument
927 TEST(Matcher, OfClass) { in TEST() argument
941 TEST(Matcher, VisitsTemplateInstantiations) { in TEST() argument
961 TEST(Matcher, HasCondition) { in TEST() argument
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-matchers.h324 explicit Matcher() {} // NOLINT in Matcher() function
327 explicit Matcher(const MatcherInterface<T>* impl) in Matcher() function
342 Matcher() {} in Matcher() function
344 explicit Matcher(const MatcherInterface<const internal::string&>* impl) in Matcher() function
359 Matcher() {} in Matcher() function
361 explicit Matcher(const MatcherInterface<internal::string>* impl) in Matcher() function
380 Matcher() {} in Matcher() function
382 explicit Matcher(const MatcherInterface<const StringPiece&>* impl) in Matcher() function
400 Matcher() {} in Matcher() function
402 explicit Matcher(const MatcherInterface<StringPiece>* impl) in Matcher() function
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
DSynchronizedFilter.java41 private static class Matcher extends AbstractMatcher { class in SynchronizedFilter
44 private Matcher(final AbstractInsnNode start) { in Matcher() method in SynchronizedFilter.Matcher
DTryWithResourcesJavacFilter.java89 static class Matcher extends AbstractMatcher { class in TryWithResourcesJavacFilter
96 Matcher(final IFilterOutput output) { in Matcher() method in TryWithResourcesJavacFilter.Matcher
DPrivateEmptyNoArgConstructorFilter.java35 private static class Matcher extends AbstractMatcher { class in PrivateEmptyNoArgConstructorFilter
DTryWithResourcesEcjFilter.java47 static class Matcher extends AbstractMatcher { class in TryWithResourcesEcjFilter
56 Matcher(final IFilterOutput output) { in Matcher() method in TryWithResourcesEcjFilter.Matcher
DStringSwitchJavacFilter.java57 private static class Matcher extends AbstractMatcher { class in StringSwitchJavacFilter
/external/clang/lib/ASTMatchers/Dynamic/
DVariantValue.cpp53 VariantMatcher::MatcherOps::canConstructFrom(const DynTypedMatcher &Matcher, in canConstructFrom()
82 SinglePayload(const DynTypedMatcher &Matcher) : Matcher(Matcher) {} in SinglePayload()
108 const DynTypedMatcher Matcher; member in clang::ast_matchers::dynamic::VariantMatcher::SinglePayload
162 for (const DynTypedMatcher &Matcher : Matchers) { in isConvertibleTo() local
204 for (const VariantMatcher &Matcher : Args) { in isConvertibleTo() local
218 VariantMatcher VariantMatcher::SingleMatcher(const DynTypedMatcher &Matcher) { in SingleMatcher()
256 VariantValue::VariantValue(const VariantMatcher &Matcher) : Type(VT_Nothing) { in VariantValue()
/external/google-breakpad/src/testing/include/gmock/internal/
Dgmock-generated-internal-utils.h49 class Matcher; variable
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/internal/
Dgmock-generated-internal-utils.h49 class Matcher; variable
/external/clang/include/clang/ASTMatchers/
DASTMatchFinder.h281 match(MatcherT Matcher, const ast_type_traits::DynTypedNode &Node, in match()
292 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context) { in match()
298 match(MatcherT Matcher, ASTContext &Context) { in match()
DASTMatchersInternal.h306 template <typename> class Matcher; variable
471 explicit Matcher(MatcherInterface<T> *Implementation) in Matcher() function
555 explicit Matcher(const DynTypedMatcher &Implementation) in Matcher() function
589 bool matchesFirstInRange(const MatcherT &Matcher, IteratorT Start, in matchesFirstInRange()
605 bool matchesFirstInPointerRange(const MatcherT &Matcher, IteratorT Start, in matchesFirstInPointerRange()
890 const DynTypedMatcher &Matcher, in matchesChildOf()
907 const DynTypedMatcher &Matcher, in matchesDescendantOf()
924 const DynTypedMatcher &Matcher, in matchesAncestorOf()
/external/googletest/googlemock/include/gmock/internal/
Dgmock-internal-utils.h52 class Matcher; variable
/external/guice/core/src/com/google/inject/matcher/
DMatcher.java24 public interface Matcher<T> { interface
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
DMatcher.java20 public interface Matcher<T> extends SelfDescribing { interface
/external/clang/lib/ASTMatchers/
DASTMatchFinder.cpp87 MatchChildASTVisitor(const DynTypedMatcher *Matcher, in MatchChildASTVisitor()
280 const DynTypedMatcher *const Matcher; member in clang::ast_matchers::internal::__anonf13eb9c00111::MatchChildASTVisitor
377 const DynTypedMatcher &Matcher, in memoizedMatchesRecursively()
411 const DynTypedMatcher &Matcher, in matchesRecursively()
425 const DynTypedMatcher &Matcher, in matchesChildOf()
436 const DynTypedMatcher &Matcher, in matchesDescendantOf()
446 const DynTypedMatcher &Matcher, in matchesAncestorOf()
613 const ast_type_traits::DynTypedNode &Node, const DynTypedMatcher &Matcher, in memoizedMatchesAncestorOfRecursively()
649 const DynTypedMatcher &Matcher, in matchesAncestorOfRecursively()
715 const Matcher<NamedDecl> &Matcher, in typeHasMatchingAlias()
/external/archive-patcher/generator/src/main/java/com/google/archivepatcher/generator/bsdiff/
DMatcher.java23 interface Matcher { interface

12