| 46 | /////////////////////////////////////////////////////////////////////////// |
| 47 | |
| 48 | void PercentEncoding::EncodeAppend(const StringPiece& input, std::string* output) |
| 49 | { |
| 50 | static const ByteSet unchanged("ABCDEFGHIJKLMNOPQRSTUVWXYZ" |
| 51 | "abcdefghijklmnopqrstuvwxyz" |
| 52 | "0123456789*+-./@_"); |
| 53 | DoEncodeAppend(input, unchanged, output); |
| 54 | } |
| 55 | |
| 56 | void PercentEncoding::EncodeTo(const StringPiece& input, std::string* output) |
| 57 | { |
nothing calls this directly
no test coverage detected