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

References

include/llvm/ADT/StringExtras.h
  171   if (Input.empty())
  175   Output.reserve((Input.size() + 1) / 2);
  176   if (Input.size() % 2 == 1) {
  177     Output.push_back(hexFromNibbles('0', Input.front()));
  178     Input = Input.drop_front();
  178     Input = Input.drop_front();
  181   assert(Input.size() % 2 == 0);
  182   while (!Input.empty()) {
  183     uint8_t Hex = hexFromNibbles(Input[0], Input[1]);
  183     uint8_t Hex = hexFromNibbles(Input[0], Input[1]);
  185     Input = Input.drop_front(2);
  185     Input = Input.drop_front(2);