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

  /external/clang/include/clang/Frontend/
HeaderSearchOptions.h 48 /// relative to the sysroot, or true if it should always be the absolute
74 std::string Sysroot;
109 : Sysroot(_Sysroot), DisableModuleHash(0), UseBuiltinIncludes(true),
FrontendActions.h 89 std::string &Sysroot,
116 std::string &Sysroot,
CompilerInstance.h 545 createPCHExternalASTSource(StringRef Path, const std::string &Sysroot,
  /external/clang/lib/Frontend/
FrontendActions.cpp 82 std::string Sysroot;
85 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS))
89 Sysroot.clear();
90 return new PCHGenerator(CI.getPreprocessor(), OutputFile, 0, Sysroot, OS);
95 std::string &Sysroot,
98 Sysroot = CI.getHeaderSearchOpts().Sysroot;
99 if (CI.getFrontendOpts().RelocatablePCH && Sysroot.empty()) {
119 std::string Sysroot;
122 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS)
    [all...]
CompilerInstance.cpp 280 getHeaderSearchOpts().Sysroot);
314 Source.reset(createPCHExternalASTSource(Path, getHeaderSearchOpts().Sysroot,
327 const std::string &Sysroot,
337 Sysroot.empty() ? "" : Sysroot.c_str(),
    [all...]
ASTUnit.cpp     [all...]
InitHeaderSearch.cpp 50 InitHeaderSearch(HeaderSearch &HS, bool verbose, StringRef sysroot)
51 : Headers(HS), Verbose(verbose), IncludeSysroot(sysroot),
52 IsNotEmptyOrRoot(!(sysroot.empty() || sysroot == "/")) {
304 P.appendComponent("../../../i686-w64-mingw32/include"); // <sysroot>/i686-w64-mingw32/include
307 P.appendComponent("../../../x86_64-w64-mingw32/include"); // <sysroot>/x86_64-w64-mingw32/include
311 P.appendComponent("../../../include"); // <sysroot>/include
652 InitHeaderSearch Init(HS, HSOpts.Verbose, HSOpts.Sysroot);
CompilerInvocation.cpp 545 if (Opts.Sysroot != "/") {
547 Res.push_back(Opts.Sysroot);
    [all...]

Completed in 85 milliseconds