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

  /external/clang/lib/Frontend/
CompilerInstance.cpp 1 //===--- CompilerInstance.cpp ---------------------------------------------===//
10 #include "clang/Frontend/CompilerInstance.h"
54 CompilerInstance::CompilerInstance(bool BuildingModule)
61 CompilerInstance::~CompilerInstance() {
65 void CompilerInstance::setInvocation(CompilerInvocation *Value) {
69 bool CompilerInstance::shouldBuildGlobalModuleIndex() const {
76 void CompilerInstance::setDiagnostics(DiagnosticsEngine *Value) {
80 void CompilerInstance::setTarget(TargetInfo *Value)
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInstance.h 1 //===-- CompilerInstance.h - Clang Compiler Instance ------------*- C++ -*-===//
50 /// CompilerInstance - Helper class for managing a single instance of the Clang
53 /// The CompilerInstance serves two purposes:
62 /// object and retaking ownership prior to destroying the CompilerInstance.
66 /// come in two forms; a short form that reuses the CompilerInstance objects,
68 class CompilerInstance : public ModuleLoader {
156 CompilerInstance(const CompilerInstance &) LLVM_DELETED_FUNCTION;
157 void operator=(const CompilerInstance &) LLVM_DELETED_FUNCTION;
159 explicit CompilerInstance(bool BuildingModule = false)
    [all...]

Completed in 48 milliseconds