Lines Matching refs:AMatcher
63 const std::string &Code, const T &AMatcher, bool ExpectMatch,
70 Finder.addMatcher(AMatcher, &VerifyFound);
72 if (!Finder.addDynamicMatcher(AMatcher, &VerifyDynamicFound))
108 testing::AssertionResult matches(const std::string &Code, const T &AMatcher) { in matches() argument
109 return matchesConditionally(Code, AMatcher, true, "-std=c++11"); in matches()
114 const T &AMatcher) { in notMatches() argument
115 return matchesConditionally(Code, AMatcher, false, "-std=c++11"); in notMatches()
120 const T &AMatcher) { in matchesObjC() argument
122 Code, AMatcher, true, in matchesObjC()
127 testing::AssertionResult matchesC(const std::string &Code, const T &AMatcher) { in matchesC() argument
128 return matchesConditionally(Code, AMatcher, true, "", FileContentMappings(), in matchesC()
134 const T &AMatcher) { in matchesC99() argument
135 return matchesConditionally(Code, AMatcher, true, "-std=c99", in matchesC99()
141 const T &AMatcher) { in notMatchesC() argument
142 return matchesConditionally(Code, AMatcher, false, "", FileContentMappings(), in notMatchesC()
148 const T &AMatcher) { in notMatchesObjC() argument
150 Code, AMatcher, false, in notMatchesObjC()
159 const std::string &Code, const T &AMatcher, bool ExpectMatch, in matchesConditionallyWithCuda() argument
181 Finder.addMatcher(AMatcher, &VerifyFound); in matchesConditionallyWithCuda()
183 if (!Finder.addDynamicMatcher(AMatcher, &VerifyDynamicFound)) in matchesConditionallyWithCuda()
215 const T &AMatcher) { in matchesWithCuda() argument
216 return matchesConditionallyWithCuda(Code, AMatcher, true, "-std=c++11"); in matchesWithCuda()
221 const T &AMatcher) { in notMatchesWithCuda() argument
222 return matchesConditionallyWithCuda(Code, AMatcher, false, "-std=c++11"); in notMatchesWithCuda()
227 matchAndVerifyResultConditionally(const std::string &Code, const T &AMatcher, in matchAndVerifyResultConditionally() argument
233 Finder.addMatcher(AMatcher, &VerifyVerifiedResult); in matchAndVerifyResultConditionally()
273 matchAndVerifyResultTrue(const std::string &Code, const T &AMatcher, in matchAndVerifyResultTrue() argument
276 Code, AMatcher, std::move(FindResultVerifier), true); in matchAndVerifyResultTrue()
281 matchAndVerifyResultFalse(const std::string &Code, const T &AMatcher, in matchAndVerifyResultFalse() argument
284 Code, AMatcher, std::move(FindResultVerifier), false); in matchAndVerifyResultFalse()