Home
last modified time | relevance | path

Searched refs:TestConsumer (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/unittests/DirectoryWatcher/
H A DDirectoryWatcherTest.cpp252 [&TestConsumer]() { return TestConsumer.blockUntilResult(); }); in checkEventualResultWithTimeout()
262 if (TestConsumer.result()) { in checkEventualResultWithTimeout()
265 if ((TestConsumer.result() && !TestConsumer.result().value()) || in checkEventualResultWithTimeout()
266 !TestConsumer.result()) in checkEventualResultWithTimeout()
278 VerifyingConsumer TestConsumer{ in TEST() local
311 VerifyingConsumer TestConsumer{ in TEST() local
340 VerifyingConsumer TestConsumer{ in TEST() local
368 VerifyingConsumer TestConsumer{ in TEST() local
400 VerifyingConsumer TestConsumer{ in TEST() local
423 VerifyingConsumer TestConsumer{ in TEST() local
[all …]
/llvm-project-15.0.7/clang/tools/clang-refactor/
H A DClangRefactor.cpp398 std::unique_ptr<ClangRefactorToolConsumerInterface> TestConsumer; in callback() local
401 TestConsumer = SelectedSubcommand->getSelection()->createCustomConsumer(); in callback()
403 TestConsumer ? TestConsumer.get() : Consumer.get(); in callback()
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DToolingTest.cpp42 explicit TestAction(std::unique_ptr<clang::ASTConsumer> TestConsumer) in TestAction() argument
43 : TestConsumer(std::move(TestConsumer)) {} in TestAction()
50 return std::move(TestConsumer); in CreateASTConsumer()
54 std::unique_ptr<clang::ASTConsumer> TestConsumer; member in clang::tooling::__anon2081cfad0111::TestAction