HomeSort by relevance Sort by last modified time
    Searched defs:Clang (Results 1 - 6 of 6) 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"
19 namespace clang { namespace
63 enum TextDiagnosticFormat { Clang, MSVC, Vi };
75 #include "clang/Basic/DiagnosticOptions.def"
82 #include "clang/Basic/DiagnosticOptions.def"
105 #include "clang/Basic/DiagnosticOptions.def"
110 #include "clang/Basic/DiagnosticOptions.def"
116 } // end namespace clang
  /external/clang/include/clang/Driver/
ToolChain.h 13 #include "clang/Basic/Sanitizers.h"
14 #include "clang/Driver/Action.h"
15 #include "clang/Driver/Multilib.h"
16 #include "clang/Driver/Types.h"
17 #include "clang/Driver/Util.h"
33 namespace clang { namespace
84 mutable std::unique_ptr<Tool> Clang;
168 /// \param ProgName The name the Clang driver was invoked with (from,
190 /// a compiler other than Clang.
294 /// UseDwarfDebugFlags - Embed the compile options to clang into the Dwar
    [all...]
  /external/clang/lib/Driver/
Tools.h 13 #include "clang/Basic/VersionTuple.h"
14 #include "clang/Driver/Tool.h"
15 #include "clang/Driver/Types.h"
16 #include "clang/Driver/Util.h"
17 #include "clang/Frontend/CodeGenOptions.h"
22 namespace clang { namespace
45 /// \brief Clang compiler tool.
46 class LLVM_LIBRARY_VISIBILITY Clang : public Tool {
102 // CAUTION! The first constructor argument ("clang") is not arbitrary,
104 // whether that tool is Clang based on the Tool's Name as a string
    [all...]
  /external/clang/unittests/libclang/
LibclangTest.cpp 10 #include "clang-c/Index.h"
484 std::string Clang = "bin/clang";
485 WriteFile(Clang, "");
487 const char *Argv[] = {Clang.c_str(), "-target", "arm-linux-gnueabi",
  /external/clang/utils/analyzer/
SATestBuild.py 144 # Find Clang for static analysis.
145 Clang = which("clang", os.environ['PATH'])
146 if not Clang:
147 print "Error: cannot find 'clang' in PATH"
288 SBOptions = "--use-analyzer " + Clang + " "
349 CmdPrefix = Clang + " -cc1 "
677 Parser = argparse.ArgumentParser(description='Test the Clang Static Analyzer.')

Completed in 595 milliseconds