HomeSort by: relevance | last modified time | path
    Searched refs:Sysroot (Results 1 - 14 of 14) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
HeaderSearchOptions.h 75 /// relative to the sysroot, or true if it should always be the absolute
99 std::string Sysroot;
222 : Sysroot(_Sysroot), ModuleFormat("raw"), DisableModuleHash(false),
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
FrontendActions.cpp 98 std::string Sysroot;
99 if (!ComputeASTConsumerArguments(CI, /*ref*/ Sysroot))
109 Sysroot.clear();
115 CI.getPreprocessor(), CI.getModuleCache(), OutputFile, Sysroot, Buffer,
126 std::string &Sysroot) {
127 Sysroot = CI.getHeaderSearchOpts().Sysroot;
128 if (CI.getFrontendOpts().RelocatablePCH && Sysroot.empty()) {
168 std::string Sysroot;
174 CI.getPreprocessor(), CI.getModuleCache(), OutputFile, Sysroot, Buffer
    [all...]
PrecompiledPreamble.cpp 275 std::string Sysroot;
276 if (!GeneratePCHAction::ComputeASTConsumerArguments(CI, Sysroot))
290 Sysroot.clear();
293 *this, CI.getPreprocessor(), CI.getModuleCache(), Sysroot, std::move(OS));
CompilerInstance.cpp 500 getHeaderSearchOpts().Sysroot);
567 Path, getHeaderSearchOpts().Sysroot, DisableValidation,
576 StringRef Path, StringRef Sysroot,
589 Sysroot.empty() ? "" : Sysroot.data(), DisableValidation,
1500 std::string Sysroot = HSOpts.Sysroot;
1512 Sysroot.empty() ? "" : Sysroot.c_str(),
InitHeaderSearch.cpp 50 InitHeaderSearch(HeaderSearch &HS, bool verbose, StringRef sysroot)
51 : Headers(HS), Verbose(verbose), IncludeSysroot(std::string(sysroot)),
52 HasSysroot(!(sysroot.empty() || sysroot == "/")) {}
55 /// the sysroot if used.
60 /// without performing any sysroot remapping.
117 // Add the path with sysroot prepended, if desired and this is a system header
277 // <sysroot>/<triple>/include
625 InitHeaderSearch Init(HS, HSOpts.Verbose, HSOpts.Sysroot);
CompilerInvocation.cpp 3004 llvm::sys::path::append(Buffer, Opts.Sysroot,
4523 // Extend the signature with the sysroot and other header search options.
4524 code = hash_combine(code, hsOpts.Sysroot,
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
AIX.cpp 179 getLibraryPaths().push_back(getDriver().SysRoot + "/usr/lib");
182 // Returns the effective header sysroot path to use.
183 // This comes from either -isysroot or --sysroot.
188 if (!getDriver().SysRoot.empty())
189 return getDriver().SysRoot;
199 llvm::StringRef Sysroot = GetHeaderSysroot(DriverArgs);
213 // Add <sysroot>/usr/include.
214 SmallString<128> UP(Sysroot);
Darwin.cpp 405 // Give --sysroot= preference, over the Apple specific behavior to also use
407 StringRef sysroot = C.getSysRoot(); local
408 if (sysroot != "") {
410 CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
1807 // Xcode tools to define the default sysroot, by making it the default for
1967 // Returns the effective header sysroot path to use. This comes either from
1968 // -isysroot or --sysroot.
1972 if (!getDriver().SysRoot.empty())
1973 return getDriver().SysRoot;
1981 llvm::StringRef Sysroot = GetHeaderSysroot(DriverArgs)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
FrontendActions.h 96 std::string &Sysroot);
CompilerInstance.h 665 StringRef Path, StringRef Sysroot,
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp 626 StringRef Sysroot, SDK;
628 Sysroot = CGM.getHeaderSearchOpts().Sysroot;
629 auto B = llvm::sys::path::rbegin(Sysroot);
630 auto E = llvm::sys::path::rend(Sysroot);
646 CGOpts.DebugRangesBaseAddress, remapDIPath(Sysroot), SDK);
BackendUtil.cpp 595 Entry.IgnoreSysRoot ? Entry.Path : HSOpts.Sysroot + Entry.Path);
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 1176 // Write out paths relative to the sysroot if possible.
1299 AddString(HSOpts.Sysroot, Record);
ASTReader.cpp 2780 // Relative paths in a relocatable PCH are relative to our sysroot.
5833 HSOpts.Sysroot = ReadString(Record, Idx);

Completed in 91 milliseconds