Searched refs:Consumers (Results 1 - 10 of 10) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DMultiplexConsumer.cpp239 : Consumers(std::move(C)), MutationListener(), DeserializationListener() {
244 for (auto &Consumer : Consumers) {
264 for (auto &Consumer : Consumers)
270 for (auto &Consumer : Consumers)
276 for (auto &Consumer : Consumers)
281 for (auto &Consumer : Consumers)
286 for (auto &Consumer : Consumers)
291 for (auto &Consumer : Consumers)
296 for (auto &Consumer : Consumers)
301 for (auto &Consumer : Consumers)
[all...]
H A DFrontendActions.cpp113 std::vector<std::unique_ptr<ASTConsumer>> Consumers; local
114 Consumers.push_back(std::make_unique<PCHGenerator>(
119 Consumers.push_back(CI.getPCHContainerWriter().CreatePCHContainerGenerator(
122 return std::make_unique<MultiplexConsumer>(std::move(Consumers));
171 std::vector<std::unique_ptr<ASTConsumer>> Consumers; local
173 Consumers.push_back(std::make_unique<PCHGenerator>(
182 Consumers.push_back(CI.getPCHContainerWriter().CreatePCHContainerGenerator(
184 return std::make_unique<MultiplexConsumer>(std::move(Consumers));
H A DFrontendAction.cpp181 // Collect the list of plugins that go before the main action (in Consumers)
183 std::vector<std::unique_ptr<ASTConsumer>> Consumers;
205 Consumers.push_back(std::move(PluginConsumer));
212 // Add to Consumers the main consumer, then all the plugins that go after it
213 Consumers.push_back(std::move(Consumer));
215 Consumers.push_back(std::move(C));
218 return std::make_unique<MultiplexConsumer>(std::move(Consumers));
H A DASTUnit.cpp1611 std::vector<std::unique_ptr<ASTConsumer>> Consumers; local
1613 Consumers.push_back(Clang->takeASTConsumer());
1614 Consumers.push_back(std::make_unique<TopLevelDeclTrackerConsumer>(
1617 std::make_unique<MultiplexConsumer>(std::move(Consumers)));
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DMultiplexConsumer.h81 std::vector<std::unique_ptr<ASTConsumer>> Consumers; // Owns these. member in class:clang::MultiplexConsumer
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAnalysisManager.h50 const PathDiagnosticConsumers &Consumers,
/netbsd-current/external/apache2/llvm/dist/clang/tools/clang-import-test/
H A Dclang-import-test.cpp330 MultiplexConsumer Consumers(std::move(ASTConsumers));
331 Consumers.Initialize(CI.getASTContext());
333 if (llvm::Error PE = ParseSource(Path, CI.getCompilerInstance(), Consumers))
/netbsd-current/external/apache2/llvm/dist/clang/tools/libclang/
H A DIndexing.cpp370 std::vector<std::unique_ptr<ASTConsumer>> Consumers; variable
371 Consumers.push_back(std::make_unique<IndexingConsumer>(
373 Consumers.push_back(createIndexingASTConsumer(
376 return std::make_unique<MultiplexConsumer>(std::move(Consumers));
/netbsd-current/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DObjCMT.cpp201 std::vector<std::unique_ptr<ASTConsumer>> Consumers; local
202 Consumers.push_back(WrapperFrontendAction::CreateASTConsumer(CI, InFile));
203 Consumers.push_back(std::make_unique<ObjCMigrateASTConsumer>(
206 return std::make_unique<MultiplexConsumer>(std::move(Consumers));
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp3043 ArrayRef<PathDiagnosticConsumer*> Consumers = getPathDiagnosticConsumers();
3045 generateDiagnosticForConsumerMap(report, Consumers, bugReports);

Completed in 414 milliseconds