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

  /external/clang/include/clang/Frontend/
FrontendAction.h 1 //===-- FrontendAction.h - Generic Frontend Action Interface ----*- C++ -*-===//
27 /// FrontendAction - Abstract base class for actions which can be performed by
29 class FrontendAction {
94 FrontendAction();
95 virtual ~FrontendAction();
202 class ASTFrontendAction : public FrontendAction {
234 class PreprocessorFrontendAction : public FrontendAction {
237 /// this method should never be called by FrontendAction clients.
248 /// implements every virtual method in the FrontendAction interface by
250 class WrapperFrontendAction : public FrontendAction {
    [all...]
  /external/clang/lib/Frontend/
FrontendAction.cpp 1 //===--- FrontendAction.cpp -----------------------------------------------===//
10 #include "clang/Frontend/FrontendAction.h"
115 FrontendAction::FrontendAction() : Instance(0) {}
117 FrontendAction::~FrontendAction() {}
119 void FrontendAction::setCurrentInput(const FrontendInputFile &CurrentInput,
125 ASTConsumer* FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI,
148 FrontendAction* c = P.get();
158 bool FrontendAction::BeginSourceFile(CompilerInstance &CI
    [all...]

Completed in 71 milliseconds