Home
last modified time | relevance | path

Searched refs:percentEncode (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/bsd/openldap/dist/contrib/ldapc++/src/
H A DLDAPUrl.cpp349 url << "[" << this->percentEncode(m_Host, encoded) << "]"; in components2Url()
351 url << this->percentEncode(m_Host, encoded, PCT_ENCFLAG_SLASH); in components2Url()
361 this->percentEncode( m_DN, encoded ); in components2Url()
371 this->percentEncode( *i, encoded ); in components2Url()
392 this->percentEncode( m_Filter, encoded ); in components2Url()
405 this->percentEncode( *i, encoded, 1); in components2Url()
418 std::string& LDAPUrl::percentEncode( const std::string &src, in percentEncode() function in LDAPUrl
H A DLDAPUrl.h144 std::string& percentEncode( const std::string& src,
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddoc.d3396 …this.href = cast(string) percentEncode(removeEscapeBackslashes(href)).replaceChar(',', "$(COMMA)"); in parseHref()
3598 private static inout(char)[] percentEncode(inout(char)[] s) pure in inout()
3626 assert(percentEncode("") == "");
3627 assert(percentEncode("aB12-._~/?") == "aB12-._~/?");
3628 assert(percentEncode("<\n>") == "%3C%0A%3E");