Searched refs:toBase64 (Results 1 – 12 of 12) sorted by relevance
133 toBase64[64]={ variable495 U_ASSERT(bits<=UPRV_LENGTHOF(toBase64)); in _UTF7FromUnicodeWithOffsets()569 *target++=toBase64[bits]; in _UTF7FromUnicodeWithOffsets()601 *target++=toBase64[c>>10]; in _UTF7FromUnicodeWithOffsets()603 *target++=toBase64[(c>>4)&0x3f]; in _UTF7FromUnicodeWithOffsets()612 cnv->charErrorBuffer[0]=toBase64[(c>>4)&0x3f]; in _UTF7FromUnicodeWithOffsets()620 *target++=toBase64[bits|(c>>14)]; in _UTF7FromUnicodeWithOffsets()622 *target++=toBase64[(c>>8)&0x3f]; in _UTF7FromUnicodeWithOffsets()624 *target++=toBase64[(c>>2)&0x3f]; in _UTF7FromUnicodeWithOffsets()635 cnv->charErrorBuffer[0]=toBase64[(c>>2)&0x3f]; in _UTF7FromUnicodeWithOffsets()[all …]
38 function toBase64 (str) { function63 exports.toBase64 = toBase64
8 var toBase64 = helpers.toBase64 variable30 var authHeader = 'Basic ' + toBase64(header)
94 String toBase64() const { UNREACHABLE(); } in toBase64() function
229 inline Base64Formatter toBase64 (const deUint8* bytes, int numBytes) { return Base64Formatter(bytes… in toBase64() function273 << toBase64(&image.data[0], (int)image.data.size()) in writeResultItem()
124 String toBase64() const;
200 String Binary::toBase64() const {
451 StringUtil::builderAppendQuotedString(*output, m_binaryValue.toBase64());
35 var toBase64 = helpers.toBase64 variable397 var authHeader = 'Basic ' + toBase64(proxyAuthPieces.join(':'))