Lines Matching refs:target
109 std::string percent_encode(const unsigned char *target, size_t len);
111 std::string percent_encode(const std::string &target);
139 // Percent encode |target| if character is not in token or '%'.
140 StringRef percent_encode_token(BlockAllocator &balloc, const StringRef &target);
143 OutputIt percent_encode_token(OutputIt it, const StringRef &target) {
144 for (auto first = std::begin(target); first != std::end(target); ++first) {
161 // the same |target| parameter. The return value does not include a
163 size_t percent_encode_tokenlen(const StringRef &target);
165 // Returns quotedString version of |target|. Currently, this function
167 StringRef quote_string(BlockAllocator &balloc, const StringRef &target);
170 OutputIt quote_string(OutputIt it, const StringRef &target) {
171 for (auto c : target) {
184 // |target| parameter. The return value does not include a terminal
186 size_t quote_stringlen(const StringRef &target);