Home
last modified time | relevance | path

Searched refs:FrontendAction (Results 1 – 22 of 22) sorted by relevance

/external/clang/include/clang/Frontend/
DFrontendAction.h36 class FrontendAction {
108 FrontendAction();
109 virtual ~FrontendAction();
224 class ASTFrontendAction : public FrontendAction {
255 class PreprocessorFrontendAction : public FrontendAction {
272 class WrapperFrontendAction : public FrontendAction {
273 std::unique_ptr<FrontendAction> WrappedAction;
286 WrapperFrontendAction(FrontendAction *WrappedAction);
DFrontendActions.h26 class InitOnlyAction : public FrontendAction {
170 class ASTMergeAction : public FrontendAction {
172 FrontendAction *AdaptedAction;
188 ASTMergeAction(FrontendAction *AdaptedAction, ArrayRef<std::string> ASTFiles);
198 class PrintPreambleAction : public FrontendAction {
DCompilerInstance.h44 class FrontendAction; variable
211 bool ExecuteAction(FrontendAction &Act);
/external/clang/include/clang/ARCMigrate/
DARCMTActions.h25 CheckAction(FrontendAction *WrappedAction);
33 ModifyAction(FrontendAction *WrappedAction);
52 MigrateAction(FrontendAction *WrappedAction, StringRef migrateDir,
64 ObjCMigrateAction(FrontendAction *WrappedAction, StringRef migrateDir,
/external/clang/include/clang/Tooling/
DTooling.h56 class FrontendAction; variable
91 virtual clang::FrontendAction *create() = 0;
144 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code,
161 clang::FrontendAction *ToolAction, const Twine &Code,
198 ToolInvocation(std::vector<std::string> CommandLine, FrontendAction *FAction,
314 clang::FrontendAction *create() override { return new T; } in newFrontendActionFactory()
330 clang::FrontendAction *create() override { in newFrontendActionFactory()
/external/clang/lib/ARCMigrate/
DARCMTActions.cpp27 CheckAction::CheckAction(FrontendAction *WrappedAction) in CheckAction()
35 ModifyAction::ModifyAction(FrontendAction *WrappedAction) in ModifyAction()
52 MigrateAction::MigrateAction(FrontendAction *WrappedAction, in MigrateAction()
DObjCMT.cpp182 ObjCMigrateAction::ObjCMigrateAction(FrontendAction *WrappedAction, in ObjCMigrateAction()
/external/clang/lib/Frontend/
DFrontendAction.cpp127 FrontendAction::FrontendAction() : Instance(nullptr) {} in FrontendAction() function in FrontendAction
129 FrontendAction::~FrontendAction() {} in ~FrontendAction()
131 void FrontendAction::setCurrentInput(const FrontendInputFile &CurrentInput, in setCurrentInput()
138 FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, in CreateWrappedASTConsumer()
171 bool FrontendAction::BeginSourceFile(CompilerInstance &CI, in BeginSourceFile()
432 bool FrontendAction::Execute() { in Execute()
453 void FrontendAction::EndSourceFile() { in EndSourceFile()
510 bool FrontendAction::shouldEraseOutputFiles() { in shouldEraseOutputFiles()
589 WrapperFrontendAction::WrapperFrontendAction(FrontendAction *WrappedAction) in WrapperFrontendAction()
DCMakeLists.txt23 FrontendAction.cpp
DAndroid.mk36 FrontendAction.cpp \
DASTMerge.cpp79 ASTMergeAction::ASTMergeAction(FrontendAction *AdaptedAction, in ASTMergeAction()
DCompilerInstance.cpp770 bool CompilerInstance::ExecuteAction(FrontendAction &Act) { in ExecuteAction()
/external/clang/lib/FrontendTool/
DExecuteCompilerInvocation.cpp34 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { in CreateFrontendBaseAction()
116 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) { in CreateFrontendAction()
118 FrontendAction *Act = CreateFrontendBaseAction(CI); in CreateFrontendAction()
219 std::unique_ptr<FrontendAction> Act(CreateFrontendAction(*Clang)); in ExecuteCompilerInvocation()
/external/clang/lib/Tooling/
DTooling.cpp107 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code, in runToolOnCode()
124 bool runToolOnCodeWithArgs(clang::FrontendAction *ToolAction, const Twine &Code, in runToolOnCodeWithArgs()
166 FrontendAction *Action;
169 SingleFrontendActionFactory(FrontendAction *Action) : Action(Action) {} in SingleFrontendActionFactory()
171 FrontendAction *create() override { return Action; } in create()
185 FrontendAction *FAction, FileManager *Files) in ToolInvocation()
263 std::unique_ptr<FrontendAction> ScopedToolAction(create()); in runInvocation()
/external/clang/docs/
DRAVFrontendAction.rst8 In this tutorial you will learn how to create a FrontendAction that uses
12 Creating a FrontendAction
16 based on LibTooling, the common entry point is the FrontendAction.
17 FrontendAction is an interface that allows execution of user specific
150 #include "clang/Frontend/FrontendAction.h"
DLibTooling.rst26 If you ever wanted to run a ``FrontendAction`` over some sample code, for
43 Once you unit tested your ``FrontendAction`` to the point where it cannot
84 our ``FrontendAction`` over some code. For example, to run the
98 // The ClangTool needs a new FrontendAction for each translation unit we run
100 // FrontendActionFactory from a given FrontendAction type, we call
DClangPlugins.rst12 Clang Plugins run FrontendActions over code. See the :doc:`FrontendAction
13 tutorial <RAVFrontendAction>` on how to write a ``FrontendAction`` using the
/external/clang/include/clang/Rewrite/Frontend/
DFrontendActions.h53 FixItRecompile(FrontendAction *WrappedAction) in FixItRecompile()
/external/lldb/source/Expression/
DClangExpressionParser.cpp113 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { in CreateFrontendBaseAction()
167 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) { in CreateFrontendAction()
169 FrontendAction *Act = CreateFrontendBaseAction(CI); in CreateFrontendAction()
/external/clang/unittests/Tooling/
DToolingTest.cpp131 std::unique_ptr<FrontendAction> Action(Factory->create()); in TEST()
145 std::unique_ptr<FrontendAction> Action(Factory->create()); in TEST()
/external/clang/lib/Frontend/Rewrite/
DFrontendActions.cpp113 std::unique_ptr<FrontendAction> FixAction(new SyntaxOnlyAction()); in BeginInvocation()
/external/clang/patches/
D0004-Add-Android-build-system.patch1066 + FrontendAction.cpp \