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

  /external/clang/examples/clang-interpreter/
main.cpp 1 //===-- examples/clang-interpreter/main.cpp - Clang C Interpreter Example -===//
10 #include "clang/CodeGen/CodeGenAction.h"
11 #include "clang/Basic/DiagnosticOptions.h"
12 #include "clang/Driver/Compilation.h"
13 #include "clang/Driver/Driver.h"
14 #include "clang/Driver/Tool.h"
15 #include "clang/Frontend/CompilerInstance.h"
16 #include "clang/Frontend/CompilerInvocation.h"
17 #include "clang/Frontend/FrontendDiagnostic.h
    [all...]
  /external/clang/include/clang/Basic/
DiagnosticOptions.h 13 #include "clang/Basic/LLVM.h"
18 namespace clang { namespace
30 enum TextDiagnosticFormat { Clang, Msvc, Vi };
41 #include "clang/Basic/DiagnosticOptions.def"
48 #include "clang/Basic/DiagnosticOptions.def"
67 #include "clang/Basic/DiagnosticOptions.def"
72 #include "clang/Basic/DiagnosticOptions.def"
78 } // end namespace clang
  /external/clang/lib/Driver/
Tools.h 13 #include "clang/Driver/Tool.h"
14 #include "clang/Driver/Types.h"
15 #include "clang/Driver/Util.h"
20 namespace clang { namespace
39 /// \brief Clang compiler tool.
40 class LLVM_LIBRARY_VISIBILITY Clang : public Tool {
91 Clang(const ToolChain &TC) : Tool("clang", "clang frontend", TC) {}
103 /// \brief Clang integrated assembler tool
    [all...]
  /external/clang/include/clang/Driver/
ToolChain.h 13 #include "clang/Driver/Action.h"
14 #include "clang/Driver/Multilib.h"
15 #include "clang/Driver/Types.h"
16 #include "clang/Driver/Util.h"
31 namespace clang { namespace
69 mutable std::unique_ptr<Tool> Clang;
243 /// UseDwarfDebugFlags - Embed the compile options to clang into the Dwarf
256 /// ComputeEffectiveClangTriple - Return the Clang triple to use for this
260 /// Clang.
278 /// \brief Add the clang cc1 arguments for system include paths
    [all...]
  /external/clang/utils/analyzer/
SATestBuild.py 138 # Find Clang for static analysis.
139 Clang = which("clang", os.environ['PATH'])
140 if not Clang:
141 print "Error: cannot find 'clang' in PATH"
207 SBOptions = "--use-analyzer " + Clang + " "
257 CmdPrefix = Clang + " -cc1 -analyze -analyzer-output=plist -w "

Completed in 334 milliseconds