HomeSort by relevance Sort by last modified time
    Searched defs:AppendChar (Results 1 - 13 of 13) sorted by null

  /external/pdfium/core/fxcrt/
fx_basic_utf.cpp 13 void CFX_UTF8Decoder::AppendChar(uint32_t ch) {
14 m_Buffer.AppendChar((FX_WCHAR)ch);
19 m_Buffer.AppendChar(byte);
27 AppendChar(m_PendingChar);
48 m_Buffer.AppendChar(unicode);
68 m_Buffer.AppendChar(prefix[nbytes - 2] | (code / order));
72 m_Buffer.AppendChar(0x80 | (code / order));
fx_bidi.cpp 15 bool CFX_BidiChar::AppendChar(FX_WCHAR wch) {
56 if (m_pBidiChar->AppendChar(m_Str.GetAt(i)))
fx_basic_buffer.cpp 130 void CFX_WideTextBuf::AppendChar(FX_WCHAR ch) {
fx_basic.h 69 void AppendChar(int ch) { AppendByte(static_cast<uint8_t>(ch)); }
85 void AppendChar(FX_WCHAR wch);
153 void AppendChar(uint32_t ch);
  /external/pdfium/xfa/fde/css/
cfde_csssyntaxparser.cpp 124 AppendChar(wch);
148 AppendChar(wch);
166 AppendChar(wch);
175 m_TextData.AppendChar(wch);
201 bool CFDE_CSSSyntaxParser::AppendChar(FX_WCHAR wch) {
204 m_TextData.AppendChar(wch);
cfde_csstextbuf.h 26 bool AppendChar(FX_WCHAR wch) {
39 AppendChar(0);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_printf.cc 33 static int AppendChar(char **buff, const char *buff_end, char c) {
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(&buff, buff_end + 1, '\0')
    [all...]
  /external/pdfium/core/fpdfapi/font/
cpdf_font.cpp 134 int CPDF_Font::AppendChar(FX_CHAR* buf, uint32_t charcode) const {
139 void CPDF_Font::AppendChar(CFX_ByteString& str, uint32_t charcode) const {
141 int len = AppendChar(buf, charcode);
fpdf_font_cid.cpp 707 int CPDF_CMap::AppendChar(FX_CHAR* str, uint32_t charcode) const {
cpdf_cidfont.cpp 753 int CPDF_CIDFont::AppendChar(FX_CHAR* str, uint32_t charcode) const {
754 return m_pCMap->AppendChar(str, charcode);
  /external/pdfium/xfa/fgas/layout/
fgas_rtfbreak.cpp 228 CFX_RTFBreakType CFX_RTFBreak::AppendChar(FX_WCHAR wch) {
fgas_textbreak.cpp 548 uint32_t CFX_TxtBreak::AppendChar(FX_WCHAR wch) {
    [all...]
  /external/pdfium/xfa/fxfa/app/
cxfa_textlayout.cpp 692 bool bRet = AppendChar(wsText, fLinePos, fSpaceAbove, bSavePieces);
825 if (AppendChar(wsText, fLinePos, 0, bSavePieces)) {
889 bool CXFA_TextLayout::AppendChar(const CFX_WideString& wsText,
904 dwStatus = m_pBreak->AppendChar(wch);
    [all...]

Completed in 392 milliseconds