Searched refs:FrontendAction (Results 1 - 16 of 16) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/ARCMigrate/
H A DARCMTActions.h14 #include "clang/Frontend/FrontendAction.h"
25 CheckAction(FrontendAction *WrappedAction);
33 ModifyAction(FrontendAction *WrappedAction);
52 MigrateAction(FrontendAction *WrappedAction, StringRef migrateDir,
64 ObjCMigrateAction(FrontendAction *WrappedAction, StringRef migrateDir,
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DFrontendAction.h1 //===-- FrontendAction.h - Generic Frontend Action Interface ----*- C++ -*-===//
11 /// \brief Defines the clang::FrontendAction interface and various convenience
36 class FrontendAction { class in namespace:clang
108 FrontendAction();
109 virtual ~FrontendAction();
224 class ASTFrontendAction : public FrontendAction {
255 class PreprocessorFrontendAction : public FrontendAction {
258 /// this method should never be called by FrontendAction clients.
271 /// the FrontendAction interface by forwarding to the wrapped action.
272 class WrapperFrontendAction : public FrontendAction {
[all...]
H A DFrontendActions.h13 #include "clang/Frontend/FrontendAction.h"
26 class InitOnlyAction : public FrontendAction {
169 class ASTMergeAction : public FrontendAction {
171 FrontendAction *AdaptedAction;
187 ASTMergeAction(FrontendAction *AdaptedAction, ArrayRef<std::string> ASTFiles);
197 class PrintPreambleAction : public FrontendAction {
H A DCompilerInstance.h46 class FrontendAction;
219 bool ExecuteAction(FrontendAction &Act);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DARCMTActions.cpp28 CheckAction::CheckAction(FrontendAction *WrappedAction)
37 ModifyAction::ModifyAction(FrontendAction *WrappedAction)
52 MigrateAction::MigrateAction(FrontendAction *WrappedAction,
H A DObjCMT.cpp182 ObjCMigrateAction::ObjCMigrateAction(FrontendAction *WrappedAction,
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Tooling/
H A DTooling.h14 // to run over. The tool will then run a user-specified FrontendAction over
17 // It is also possible to run a FrontendAction over a snippet of code by
39 #include "clang/Frontend/FrontendAction.h"
58 class FrontendAction;
64 /// If your tool is based on FrontendAction, you should be deriving from
79 /// Having a factory interface allows, for example, a new FrontendAction to be
87 /// \brief Invokes the compiler with a FrontendAction created by create().
92 /// \brief Returns a new clang::FrontendAction.
95 virtual clang::FrontendAction *create() = 0;
100 /// T must derive from clang::FrontendAction
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DFrontendAction.cpp1 //===--- FrontendAction.cpp -----------------------------------------------===//
10 #include "clang/Frontend/FrontendAction.h"
127 FrontendAction::FrontendAction() : Instance(nullptr) {} function in class:FrontendAction
129 FrontendAction::~FrontendAction() {}
131 void FrontendAction::setCurrentInput(const FrontendInputFile &CurrentInput,
138 FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI,
171 bool FrontendAction::BeginSourceFile(CompilerInstance &CI,
432 bool FrontendAction
[all...]
H A DASTMerge.cpp28 // of FrontendAction.
86 ASTMergeAction::ASTMergeAction(FrontendAction *AdaptedAction,
H A DCompilerInstance.cpp21 #include "clang/Frontend/FrontendAction.h"
789 bool CompilerInstance::ExecuteAction(FrontendAction &Act) {
/freebsd-11.0-release/lib/clang/libclangfrontend/
H A DMakefile21 FrontendAction.cpp \
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/
H A DFrontendActions.h13 #include "clang/Frontend/FrontendAction.h"
53 FixItRecompile(FrontendAction *WrappedAction)
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp34 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
116 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) {
118 FrontendAction *Act = CreateFrontendBaseAction(CI);
219 std::unique_ptr<FrontendAction> Act(CreateFrontendAction(*Clang));
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Tooling/
H A DTooling.cpp102 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code,
121 clang::FrontendAction *ToolAction, const Twine &Code,
195 FrontendAction *Action;
198 SingleFrontendActionFactory(FrontendAction *Action) : Action(Action) {}
200 FrontendAction *create() override { return Action; }
212 std::vector<std::string> CommandLine, FrontendAction *FAction,
290 // The FrontendAction can have lifetime requirements for Compiler or its
293 std::unique_ptr<FrontendAction> ScopedToolAction(create());
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp114 std::unique_ptr<FrontendAction> FixAction(new SyntaxOnlyAction());
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.cpp702 std::unique_ptr<clang::FrontendAction> action(new clang::SyntaxOnlyAction);

Completed in 128 milliseconds