Home
last modified time | relevance | path

Searched refs:Consumers (Results 1 – 25 of 26) sorted by relevance

12

/freebsd-14-stable/contrib/llvm-project/clang/lib/Frontend/
HDMultiplexConsumer.cpp274 : Consumers(std::move(C)) { in MultiplexConsumer()
279 for (auto &Consumer : Consumers) { in MultiplexConsumer()
299 for (auto &Consumer : Consumers) in Initialize()
305 for (auto &Consumer : Consumers) in HandleTopLevelDecl()
311 for (auto &Consumer : Consumers) in HandleInlineFunctionDefinition()
316 for (auto &Consumer : Consumers) in HandleCXXStaticMemberVarInstantiation()
321 for (auto &Consumer : Consumers) in HandleInterestingDecl()
326 for (auto &Consumer : Consumers) in HandleTranslationUnit()
331 for (auto &Consumer : Consumers) in HandleTagDeclDefinition()
336 for (auto &Consumer : Consumers) in HandleTagDeclRequiredDefinition()
[all …]
HDFrontendActions.cpp139 std::vector<std::unique_ptr<ASTConsumer>> Consumers; in CreateASTConsumer() local
140 Consumers.push_back(std::make_unique<PCHGenerator>( in CreateASTConsumer()
146 Consumers.push_back(CI.getPCHContainerWriter().CreatePCHContainerGenerator( in CreateASTConsumer()
149 return std::make_unique<MultiplexConsumer>(std::move(Consumers)); in CreateASTConsumer()
198 std::vector<std::unique_ptr<ASTConsumer>> Consumers; in CreateMultiplexConsumer() local
200 Consumers.push_back(std::make_unique<PCHGenerator>( in CreateMultiplexConsumer()
211 Consumers.push_back(CI.getPCHContainerWriter().CreatePCHContainerGenerator( in CreateMultiplexConsumer()
213 return Consumers; in CreateMultiplexConsumer()
219 std::vector<std::unique_ptr<ASTConsumer>> Consumers = in CreateASTConsumer() local
221 if (Consumers.empty()) in CreateASTConsumer()
[all …]
HDFrontendAction.cpp197 std::vector<std::unique_ptr<ASTConsumer>> Consumers; in CreateWrappedASTConsumer() local
222 Consumers.push_back(std::move(PluginConsumer)); in CreateWrappedASTConsumer()
230 Consumers.push_back(std::move(Consumer)); in CreateWrappedASTConsumer()
237 Consumers.push_back(std::move(C)); in CreateWrappedASTConsumer()
240 return std::make_unique<MultiplexConsumer>(std::move(Consumers)); in CreateWrappedASTConsumer()
HDASTUnit.cpp1659 std::vector<std::unique_ptr<ASTConsumer>> Consumers; in LoadFromCompilerInvocationAction() local
1661 Consumers.push_back(Clang->takeASTConsumer()); in LoadFromCompilerInvocationAction()
1662 Consumers.push_back(std::make_unique<TopLevelDeclTrackerConsumer>( in LoadFromCompilerInvocationAction()
1665 std::make_unique<MultiplexConsumer>(std::move(Consumers))); in LoadFromCompilerInvocationAction()
/freebsd-14-stable/sys/contrib/device-tree/Bindings/hwlock/
HDhwlock.txt21 Consumers that require specific hwlock(s) should specify them using the
33 as the hwlocks, with one name per hwlock. Consumers can
/freebsd-14-stable/contrib/llvm-project/clang/lib/ExtractAPI/
HDExtractAPIConsumer.cpp563 std::vector<std::unique_ptr<ASTConsumer>> Consumers; in CreateASTConsumer() local
564 Consumers.push_back(std::move(OtherConsumer)); in CreateASTConsumer()
565 Consumers.push_back(std::move(WrappingConsumer)); in CreateASTConsumer()
567 return std::make_unique<MultiplexConsumer>(std::move(Consumers)); in CreateASTConsumer()
/freebsd-14-stable/tests/sys/geom/class/mirror/
HDconf.sh37 grep -A5 ^Consumers | \
/freebsd-14-stable/sys/contrib/device-tree/Bindings/dma/
HDste-coh901318.txt25 Consumers example:
/freebsd-14-stable/sys/contrib/device-tree/Bindings/phy/
HDphy-da8xx-usb.txt8 controllers on DA8xx SoCs. Consumers of this device should use index 0 for
/freebsd-14-stable/sys/contrib/device-tree/Bindings/clock/
Dcsr,atlas7-car.txt26 Examples: Consumers using clock or reset:
/freebsd-14-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
HDAnalysisManager.h50 const PathDiagnosticConsumers &Consumers,
/freebsd-14-stable/contrib/llvm-project/clang/include/clang/Frontend/
HDMultiplexConsumer.h83 std::vector<std::unique_ptr<ASTConsumer>> Consumers; // Owns these.
/freebsd-14-stable/sys/contrib/device-tree/Bindings/soc/ti/
HDsci-pm-domain.txt44 PM Domain Consumers
/freebsd-14-stable/sys/contrib/device-tree/Bindings/clock/ti/davinci/
HDpsc.txt23 Consumers:
HDpll.txt34 domains. The node name must be "sysclk". Consumers of this node should
/freebsd-14-stable/sys/contrib/device-tree/Bindings/interconnect/
HDinterconnect.txt55 order as the interconnects property. Consumers drivers will use
/freebsd-14-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCodeGenAction.cpp1037 std::vector<std::unique_ptr<ASTConsumer>> Consumers(2); in CreateASTConsumer() local
1038 Consumers[0] = std::make_unique<ReducedBMIGenerator>( in CreateASTConsumer()
1041 Consumers[1] = std::move(Result); in CreateASTConsumer()
1042 return std::make_unique<MultiplexConsumer>(std::move(Consumers)); in CreateASTConsumer()
/freebsd-14-stable/sys/contrib/device-tree/Bindings/power/
Drenesas,sysc-rmobile.txt87 == PM Domain Consumers ==
HDpower_domain.txt26 order as the power-domains property. Consumers drivers will use
/freebsd-14-stable/sys/contrib/device-tree/Bindings/iio/
HDiio-bindings.txt61 order as the io-channels property. Consumers drivers
/freebsd-14-stable/sys/contrib/device-tree/Bindings/reset/
HDreset.txt56 the resets property. Consumers drivers will use reset-names to
/freebsd-14-stable/sys/contrib/device-tree/Bindings/mux/
HDmux-controller.txt15 Consumers
/freebsd-14-stable/contrib/llvm-project/clang/lib/ARCMigrate/
HDObjCMT.cpp198 std::vector<std::unique_ptr<ASTConsumer>> Consumers; in CreateASTConsumer() local
199 Consumers.push_back(WrapperFrontendAction::CreateASTConsumer(CI, InFile)); in CreateASTConsumer()
200 Consumers.push_back(std::make_unique<ObjCMigrateASTConsumer>( in CreateASTConsumer()
203 return std::make_unique<MultiplexConsumer>(std::move(Consumers)); in CreateASTConsumer()
/freebsd-14-stable/sys/contrib/openzfs/tests/zfs-tests/include/
HDblkdev.shlib68 # Note: there is no meaningful return code if udevadm fails. Consumers
/freebsd-14-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
HDBugReporter.cpp3114 ArrayRef<PathDiagnosticConsumer*> Consumers = getPathDiagnosticConsumers(); in FlushReport() local
3116 generateDiagnosticForConsumerMap(report, Consumers, bugReports); in FlushReport()

12