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

References

tools/clang/tools/extra/clangd/URI.cpp
  112   for (auto I = Content.begin(), E = Content.end(); I != E; ++I) {
  112   for (auto I = Content.begin(), E = Content.end(); I != E; ++I) {
  113     if (*I != '%') {
  114       Result += *I;
  117     if (*I == '%' && I + 2 < Content.end() && llvm::isHexDigit(*(I + 1)) &&
  117     if (*I == '%' && I + 2 < Content.end() && llvm::isHexDigit(*(I + 1)) &&
  117     if (*I == '%' && I + 2 < Content.end() && llvm::isHexDigit(*(I + 1)) &&
  118         llvm::isHexDigit(*(I + 2))) {
  119       Result.push_back(llvm::hexFromNibbles(*(I + 1), *(I + 2)));
  119       Result.push_back(llvm::hexFromNibbles(*(I + 1), *(I + 2)));
  120       I += 2;
  122       Result.push_back(*I);