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

/external/clang/lib/ARCMigrate/
H A DARCMTActions.cpp27 CheckAction::CheckAction(FrontendAction *WrappedAction)
35 ModifyAction::ModifyAction(FrontendAction *WrappedAction)
52 MigrateAction::MigrateAction(FrontendAction *WrappedAction,
H A DObjCMT.cpp178 ObjCMigrateAction::ObjCMigrateAction(FrontendAction *WrappedAction,
/external/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,
/external/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();
215 class ASTFrontendAction : public FrontendAction {
246 class PreprocessorFrontendAction : public FrontendAction {
249 /// this method should never be called by FrontendAction clients.
262 /// the FrontendAction interface by forwarding to the wrapped action.
263 class WrapperFrontendAction : public FrontendAction {
[all...]
H A DFrontendActions.h13 #include "clang/Frontend/FrontendAction.h"
26 class InitOnlyAction : public FrontendAction {
172 class ASTMergeAction : public FrontendAction {
174 FrontendAction *AdaptedAction;
190 ASTMergeAction(FrontendAction *AdaptedAction, ArrayRef<std::string> ASTFiles);
200 class PrintPreambleAction : public FrontendAction {
H A DCompilerInstance.h43 class FrontendAction;
195 bool ExecuteAction(FrontendAction &Act);
/external/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
37 #include "clang/Frontend/FrontendAction.h"
54 class FrontendAction;
60 /// If your tool is based on FrontendAction, you should be deriving from
74 /// Having a factory interface allows, for example, a new FrontendAction to be
82 /// \brief Invokes the compiler with a FrontendAction created by create().
86 /// \brief Returns a new clang::FrontendAction.
89 virtual clang::FrontendAction *create() = 0;
94 /// T must derive from clang::FrontendAction
[all...]
/external/clang/lib/Frontend/
H A DFrontendAction.cpp1 //===--- FrontendAction.cpp -----------------------------------------------===//
10 #include "clang/Frontend/FrontendAction.h"
125 FrontendAction::FrontendAction() : Instance(nullptr) {} function in class:FrontendAction
127 FrontendAction::~FrontendAction() {}
129 void FrontendAction::setCurrentInput(const FrontendInputFile &CurrentInput,
135 ASTConsumer* FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI,
158 FrontendAction* c = P.get();
168 bool FrontendAction
[all...]
H A DAndroid.mk38 FrontendAction.cpp \
H A DASTMerge.cpp28 // of FrontendAction.
81 ASTMergeAction::ASTMergeAction(FrontendAction *AdaptedAction,
H A DCompilerInstance.cpp21 #include "clang/Frontend/FrontendAction.h"
767 bool CompilerInstance::ExecuteAction(FrontendAction &Act) {
/external/clang/include/clang/Rewrite/Frontend/
H A DFrontendActions.h13 #include "clang/Frontend/FrontendAction.h"
53 FixItRecompile(FrontendAction *WrappedAction)
/external/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp34 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
132 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) {
134 FrontendAction *Act = CreateFrontendBaseAction(CI);
237 std::unique_ptr<FrontendAction> Act(CreateFrontendAction(*Clang));
/external/clang/lib/Tooling/
H A DTooling.cpp107 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code,
124 bool runToolOnCodeWithArgs(clang::FrontendAction *ToolAction, const Twine &Code,
158 FrontendAction *Action;
161 SingleFrontendActionFactory(FrontendAction *Action) : Action(Action) {}
163 FrontendAction *create() override { return Action; }
177 FrontendAction *FAction, FileManager *Files)
254 // The FrontendAction can have lifetime requirements for Compiler or its
257 std::unique_ptr<FrontendAction> ScopedToolAction(create());
/external/lldb/source/Expression/
H A DClangExpressionParser.cpp113 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
167 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) {
169 FrontendAction *Act = CreateFrontendBaseAction(CI);
/external/clang/unittests/Tooling/
H A DToolingTest.cpp15 #include "clang/Frontend/FrontendAction.h"
123 std::unique_ptr<FrontendAction> Action(Factory->create());
137 std::unique_ptr<FrontendAction> Action(Factory->create());
/external/clang/lib/Rewrite/Frontend/
H A DFrontendActions.cpp113 std::unique_ptr<FrontendAction> FixAction(new SyntaxOnlyAction());

Completed in 2243 milliseconds