Searched defs:AppendChar (Results 1 - 9 of 9) sorted by relevance

/external/pdfium/core/src/fxcrt/
H A Dfx_arabic.cpp24 FX_BOOL CFX_BidiChar::AppendChar(FX_WCHAR wch) function in class:CFX_BidiChar
H A Dfx_basic_utf.cpp13 void CFX_UTF8Decoder::AppendChar(FX_DWORD ch) function in class:CFX_UTF8Decoder
15 m_Buffer.AppendChar((FX_WCHAR)ch);
21 m_Buffer.AppendChar(byte);
29 AppendChar(m_PendingChar);
51 m_Buffer.AppendChar(unicode);
71 m_Buffer.AppendChar(prefix[nbytes - 2] | (code / order));
75 m_Buffer.AppendChar(0x80 | (code / order));
H A Dfx_basic_buffer.cpp185 void CFX_WideTextBuf::AppendChar(FX_WCHAR ch) function in class:CFX_WideTextBuf
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cc33 static int AppendChar(char **buff, const char *buff_end, char c) { function in namespace:__sanitizer
56 result += AppendChar(buff, buff_end, '-');
74 result += AppendChar(buff, buff_end, c);
76 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
79 result += AppendChar(buff, buff_end, (digit < 10) ? '0' + digit
106 result += AppendChar(buff, buff_end, *s);
130 result += AppendChar(&buff, buff_end, *cur);
187 result += AppendChar(&buff, buff_end, va_arg(args, int));
192 result += AppendChar(&buff, buff_end, '%');
201 AppendChar(
51 RAW_CHECK(minimal_num_length < kMaxLen); int result = 0; if (negative && minimal_num_length) --minimal_num_length; if (negative && pad_with_zero) result += AppendChar(buff, buff_end, �); uptr num_buffer[kMaxLen]; int pos = 0; do { RAW_CHECK_MSG((uptr)pos < kMaxLen, �); num_buffer[pos++] = absolute_value % base; absolute_value /= base; } while (absolute_value > 0); if (pos < minimal_num_length) { internal_memset(&num_buffer[pos], 0, sizeof(num_buffer[0]) * (minimal_num_length - pos)); pos = minimal_num_length; } RAW_CHECK(pos > 0); pos--; for (; pos >= 0 && num_buffer[pos] == 0; pos--) argument
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Ddeep-heap-profile.cc91 buffer->AppendChar('\n');
170 buffer->AppendChar(' ');
172 buffer->AppendChar('<');
180 buffer->AppendChar('#');
185 buffer->AppendChar('>');
188 buffer->AppendChar('\n');
217 buffer->AppendChar('\n');
389 buffer.AppendChar('\n');
394 buffer.AppendChar('\n');
401 buffer.AppendChar('\
467 bool DeepHeapProfile::TextBuffer::AppendChar(char value) { function in class:DeepHeapProfile::TextBuffer
[all...]
/external/pdfium/core/include/fpdfapi/
H A Dfpdf_resource.h157 void AppendChar(CFX_ByteString& str, FX_DWORD charcode) const;
159 virtual int AppendChar(FX_LPSTR buf, FX_DWORD charcode) const function in class:CPDF_Font
506 virtual int AppendChar(FX_LPSTR str, FX_DWORD charcode) const;
/external/pdfium/core/include/fxcrt/
H A Dfx_basic.h98 void AppendChar(int ch) function in class:CFX_ByteTextBuf
128 void AppendChar(FX_WCHAR wch);
313 void AppendChar(FX_DWORD ch);
/external/pdfium/core/src/fpdfapi/fpdf_font/
H A Dfpdf_font.cpp164 void CPDF_Font::AppendChar(CFX_ByteString& str, FX_DWORD charcode) const function in class:CPDF_Font
167 int len = AppendChar(buf, charcode);
231 dest_pos += AppendChar(dest_buf + dest_pos, charcode);
663 m_MultiCharBuf.AppendChar(destcode.GetLength());
693 m_MultiCharBuf.AppendChar(destcode.GetLength());
716 m_MultiCharBuf.AppendChar(retcode.GetLength());
H A Dfpdf_font_cid.cpp704 int CPDF_CMap::AppendChar(FX_LPSTR str, FX_DWORD charcode) const function in class:CPDF_CMap
1446 int CPDF_CIDFont::AppendChar(FX_LPSTR str, FX_DWORD charcode) const function in class:CPDF_CIDFont
1448 return m_pCMap->AppendChar(str, charcode);

Completed in 182 milliseconds