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

Function PercentEncode

IO/Core/vtkURI.h:142–145  ·  view source on GitHub ↗

* Calls `PercentEncode(str.data(), str.size())` * * @param str Input string to encode, may be empty. * @return Encodes string from `str` */

Source from the content-addressed store, hash-verified

140 * @return Encodes string from `str`
141 */
142 static std::string PercentEncode(const std::string& str)
143 {
144 return PercentEncode(str.data(), str.size());
145 }
146
147 /**
148 * @brief Encode a string into an URI compatible, percent-encoded, string

Callers 3

SetBaseFileNameMethod · 0.85
SetBaseDirectoryMethod · 0.85
TestPercentEncodingFunction · 0.85

Calls 2

dataMethod · 0.45
sizeMethod · 0.45

Tested by 1

TestPercentEncodingFunction · 0.68