Lines Matching refs:appendEscape

442 inline void INetURLObject::appendEscape(rtl::OUStringBuffer & rTheText,  in appendEscape()  function in INetURLObject
3776 appendEscape(aResult, cEscapePrefix, nUTF32); in decode()
3791 appendEscape(aResult, cEscapePrefix, nUTF32); in decode()
4861 appendEscape(aSynAbsURIRef, '%', *p); in setFSysPath()
4882 appendEscape(aSynAbsURIRef, '%', *p); in setFSysPath()
4916 appendEscape(aSynAbsURIRef, '%', *p); in setFSysPath()
4939 appendEscape(aSynAbsURIRef, '%', *p); in setFSysPath()
5124 appendEscape(rTheText, cEscapePrefix, nUCS4); in appendUCS4Escape()
5127 appendEscape(rTheText, cEscapePrefix, nUCS4 >> 6 | 0xC0); in appendUCS4Escape()
5128 appendEscape(rTheText, cEscapePrefix, (nUCS4 & 0x3F) | 0x80); in appendUCS4Escape()
5132 appendEscape(rTheText, cEscapePrefix, nUCS4 >> 12 | 0xE0); in appendUCS4Escape()
5133 appendEscape(rTheText, cEscapePrefix, (nUCS4 >> 6 & 0x3F) | 0x80); in appendUCS4Escape()
5134 appendEscape(rTheText, cEscapePrefix, (nUCS4 & 0x3F) | 0x80); in appendUCS4Escape()
5138 appendEscape(rTheText, cEscapePrefix, nUCS4 >> 18 | 0xF0); in appendUCS4Escape()
5139 appendEscape(rTheText, cEscapePrefix, (nUCS4 >> 12 & 0x3F) | 0x80); in appendUCS4Escape()
5140 appendEscape(rTheText, cEscapePrefix, (nUCS4 >> 6 & 0x3F) | 0x80); in appendUCS4Escape()
5141 appendEscape(rTheText, cEscapePrefix, (nUCS4 & 0x3F) | 0x80); in appendUCS4Escape()
5145 appendEscape(rTheText, cEscapePrefix, nUCS4 >> 24 | 0xF8); in appendUCS4Escape()
5146 appendEscape(rTheText, cEscapePrefix, (nUCS4 >> 18 & 0x3F) | 0x80); in appendUCS4Escape()
5147 appendEscape(rTheText, cEscapePrefix, (nUCS4 >> 12 & 0x3F) | 0x80); in appendUCS4Escape()
5148 appendEscape(rTheText, cEscapePrefix, (nUCS4 >> 6 & 0x3F) | 0x80); in appendUCS4Escape()
5149 appendEscape(rTheText, cEscapePrefix, (nUCS4 & 0x3F) | 0x80); in appendUCS4Escape()
5153 appendEscape(rTheText, cEscapePrefix, nUCS4 >> 30 | 0xFC); in appendUCS4Escape()
5154 appendEscape(rTheText, cEscapePrefix, (nUCS4 >> 24 & 0x3F) | 0x80); in appendUCS4Escape()
5155 appendEscape(rTheText, cEscapePrefix, (nUCS4 >> 18 & 0x3F) | 0x80); in appendUCS4Escape()
5156 appendEscape(rTheText, cEscapePrefix, (nUCS4 >> 12 & 0x3F) | 0x80); in appendUCS4Escape()
5157 appendEscape(rTheText, cEscapePrefix, (nUCS4 >> 6 & 0x3F) | 0x80); in appendUCS4Escape()
5158 appendEscape(rTheText, cEscapePrefix, (nUCS4 & 0x3F) | 0x80); in appendUCS4Escape()
5216 appendEscape(rTheText, cEscapePrefix, nUCS4); in appendUCS4()