MCPcopy Create free account
hub / github.com/Kitware/VTK / PercentDecode

Function PercentDecode

IO/Core/vtkURI.h:172–175  ·  view source on GitHub ↗

* Calls `PercentDecode(str.data(), str.size())` * * @param str Input string to decode, may be empty. * @return Decoded string from `str` */

Source from the content-addressed store, hash-verified

170 * @return Decoded string from `str`
171 */
172 static std::string PercentDecode(const std::string& str)
173 {
174 return PercentDecode(str.data(), str.size());
175 }
176
177 /**
178 * @brief Decode percent-encoded values from given string

Callers 3

LoadFileMethod · 0.85
LoadDataMethod · 0.85
TestPercentEncodingFunction · 0.85

Calls 2

dataMethod · 0.45
sizeMethod · 0.45

Tested by 1

TestPercentEncodingFunction · 0.68