reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clangd/URI.cpp
  151   if (Authority.empty() && Body.empty())
  155   if (!Authority.empty() || llvm::StringRef(Body).startswith("/"))
  160   percentEncode(Body, Result);
  182   U.Body = percentDecode(Uri);
  238   return S->get()->getAbsolutePath(Uri.Authority, Uri.Body, HintPath);
  255     return S->getAbsolutePath(U->Authority, U->Body, HintPath);
tools/clang/tools/extra/clangd/URI.h
   37   llvm::StringRef body() const { return Body; }
   88     return std::tie(LHS.Scheme, LHS.Authority, LHS.Body) ==
   89            std::tie(RHS.Scheme, RHS.Authority, RHS.Body);
   93     return std::tie(LHS.Scheme, LHS.Authority, LHS.Body) <
   94            std::tie(RHS.Scheme, RHS.Authority, RHS.Body);