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

References

tools/clang/tools/extra/clangd/FormattedString.cpp
   48     R += Input.substr(From, Next - From);
   51     R += "``"; // double the found backtick.
   57   if (llvm::StringRef(R).startswith("`") || llvm::StringRef(R).endswith("`"))
   57   if (llvm::StringRef(R).startswith("`") || llvm::StringRef(R).endswith("`"))
   58     return "` " + std::move(R) + " `";
   62   if (llvm::StringRef(R).startswith(" ") && llvm::StringRef(R).endswith(" "))
   62   if (llvm::StringRef(R).startswith(" ") && llvm::StringRef(R).endswith(" "))
   63     return "` " + std::move(R) + " `";
   64   return "`" + std::move(R) + "`";