Lines Matching refs:rTheText
442 inline void INetURLObject::appendEscape(rtl::OUStringBuffer & rTheText, in appendEscape() argument
446 rTheText.append(sal_Unicode(cEscapePrefix)); in appendEscape()
447 rTheText.append(sal_Unicode(INetMIME::getHexDigit(int(nOctet >> 4)))); in appendEscape()
448 rTheText.append(sal_Unicode(INetMIME::getHexDigit(int(nOctet & 15)))); in appendEscape()
5118 void INetURLObject::appendUCS4Escape(rtl::OUStringBuffer & rTheText, in appendUCS4Escape() argument
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()
5164 void INetURLObject::appendUCS4(rtl::OUStringBuffer& rTheText, sal_uInt32 nUCS4, in appendUCS4() argument
5216 appendEscape(rTheText, cEscapePrefix, nUCS4); in appendUCS4()
5220 appendUCS4Escape(rTheText, cEscapePrefix, nUCS4); in appendUCS4()
5225 rTheText.append(sal_Unicode(nUCS4)); in appendUCS4()