HomeSort by relevance Sort by last modified time
    Searched refs:FrontendAction (Results 1 - 16 of 16) sorted by null

  /external/clang/include/clang/ARCMigrate/
ARCMTActions.h 14 #include "clang/Frontend/FrontendAction.h"
25 CheckAction(FrontendAction *WrappedAction);
33 ModifyAction(FrontendAction *WrappedAction);
52 MigrateAction(FrontendAction *WrappedAction, StringRef migrateDir,
65 ObjCMigrateAction(FrontendAction *WrappedAction, StringRef migrateDir,
  /external/clang/include/clang/Frontend/
FrontendAction.h 1 //===-- FrontendAction.h - Generic Frontend Action Interface ----*- C++ -*-===//
11 /// \brief Defines the clang::FrontendAction interface and various convenience
36 class FrontendAction {
100 FrontendAction();
101 virtual ~FrontendAction();
208 class ASTFrontendAction : public FrontendAction {
239 class PreprocessorFrontendAction : public FrontendAction {
242 /// this method should never be called by FrontendAction clients.
255 /// the FrontendAction interface by forwarding to the wrapped action.
256 class WrapperFrontendAction : public FrontendAction {
    [all...]
FrontendActions.h 13 #include "clang/Frontend/FrontendAction.h"
25 class InitOnlyAction : public FrontendAction {
144 class ASTMergeAction : public FrontendAction {
146 FrontendAction *AdaptedAction;
162 ASTMergeAction(FrontendAction *AdaptedAction, ArrayRef<std::string> ASTFiles);
172 class PrintPreambleAction : public FrontendAction {
CompilerInstance.h 42 class FrontendAction;
180 bool ExecuteAction(FrontendAction &Act);
  /external/clang/lib/ARCMigrate/
ARCMTActions.cpp 27 CheckAction::CheckAction(FrontendAction *WrappedAction)
35 ModifyAction::ModifyAction(FrontendAction *WrappedAction)
52 MigrateAction::MigrateAction(FrontendAction *WrappedAction,
ObjCMT.cpp 85 ObjCMigrateAction::ObjCMigrateAction(FrontendAction *WrappedAction,
  /external/clang/include/clang/Tooling/
Tooling.h 14 // 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
36 #include "clang/Frontend/FrontendAction.h"
52 class FrontendAction;
61 /// \brief Returns a new clang::FrontendAction.
64 virtual clang::FrontendAction *create() = 0;
69 /// T must extend clang::FrontendAction.
107 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code,
119 bool runToolOnCodeWithArgs(clang::FrontendAction *ToolAction, const Twine &Code,
123 /// \brief Utility to run a FrontendAction in a single clang invocation
    [all...]
  /external/clang/include/clang/Rewrite/Frontend/
FrontendActions.h 13 #include "clang/Frontend/FrontendAction.h"
53 FixItRecompile(FrontendAction *WrappedAction)
  /external/clang/lib/Frontend/
FrontendAction.cpp 1 //===--- FrontendAction.cpp -----------------------------------------------===//
10 #include "clang/Frontend/FrontendAction.h"
118 FrontendAction::FrontendAction() : Instance(0) {}
120 FrontendAction::~FrontendAction() {}
122 void FrontendAction::setCurrentInput(const FrontendInputFile &CurrentInput,
128 ASTConsumer* FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI,
151 FrontendAction* c = P.get();
162 bool FrontendAction::BeginSourceFile(CompilerInstance &CI
    [all...]
Android.mk 37 FrontendAction.cpp \
ASTMerge.cpp 28 // of FrontendAction.
82 ASTMergeAction::ASTMergeAction(FrontendAction *AdaptedAction,
CompilerInstance.cpp 20 #include "clang/Frontend/FrontendAction.h"
645 bool CompilerInstance::ExecuteAction(FrontendAction &Act) {
    [all...]
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 32 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
128 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) {
130 FrontendAction *Act = CreateFrontendBaseAction(CI);
232 OwningPtr<FrontendAction> Act(CreateFrontendAction(*Clang));
  /external/clang/unittests/Tooling/
ToolingTest.cpp 14 #include "clang/Frontend/FrontendAction.h"
103 OwningPtr<FrontendAction> Action(Factory->create());
117 OwningPtr<FrontendAction> Action(Factory->create());
  /external/clang/lib/Tooling/
Tooling.cpp 99 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code,
105 bool runToolOnCodeWithArgs(clang::FrontendAction *ToolAction, const Twine &Code,
147 ArrayRef<std::string> CommandLine, FrontendAction *ToolAction,
206 OwningPtr<FrontendAction> ScopedToolAction(ToolAction.take());
  /external/clang/lib/Rewrite/Frontend/
FrontendActions.cpp 115 OwningPtr<FrontendAction> FixAction(new SyntaxOnlyAction());

Completed in 251 milliseconds