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

/external/pdfium/core/fxcrt/
H A Dfx_basic_utf.cpp13 void CFX_UTF8Decoder::AppendChar(uint32_t ch) { function in class:CFX_UTF8Decoder
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));
H A Dfx_bidi.cpp15 bool CFX_BidiChar::AppendChar(FX_WCHAR wch) { function in class:CFX_BidiChar
56 if (m_pBidiChar->AppendChar(m_Str.GetAt(i)))
H A Dfx_basic_buffer.cpp130 void CFX_WideTextBuf::AppendChar(FX_WCHAR ch) { function in class:CFX_WideTextBuf
H A Dfx_basic.h69 void AppendChar(int ch) { AppendByte(static_cast<uint8_t>(ch)); } function in class:CFX_ByteTextBuf
85 void AppendChar(FX_WCHAR wch);
153 void AppendChar(uint32_t ch);
/external/pdfium/xfa/fde/css/
H A Dcfde_csstextbuf.h26 bool AppendChar(FX_WCHAR wch) { function in class:CFDE_CSSTextBuf
39 AppendChar(0);
H A Dcfde_csssyntaxparser.cpp124 AppendChar(wch);
148 AppendChar(wch);
166 AppendChar(wch);
175 m_TextData.AppendChar(wch);
201 bool CFDE_CSSSyntaxParser::AppendChar(FX_WCHAR wch) { function in class:CFDE_CSSSyntaxParser
204 m_TextData.AppendChar(wch);
/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/pdfium/core/fpdfapi/font/
H A Dcpdf_font.cpp134 int CPDF_Font::AppendChar(FX_CHAR* buf, uint32_t charcode) const { function in class:CPDF_Font
139 void CPDF_Font::AppendChar(CFX_ByteString& str, uint32_t charcode) const { function in class:CPDF_Font
141 int len = AppendChar(buf, charcode);
H A Dcpdf_cidfont.cpp753 int CPDF_CIDFont::AppendChar(FX_CHAR* str, uint32_t charcode) const { function in class:CPDF_CIDFont
754 return m_pCMap->AppendChar(str, charcode);
H A Dfpdf_font_cid.cpp707 int CPDF_CMap::AppendChar(FX_CHAR* str, uint32_t charcode) const { function in class:CPDF_CMap
/external/pdfium/xfa/fgas/layout/
H A Dfgas_rtfbreak.cpp228 CFX_RTFBreakType CFX_RTFBreak::AppendChar(FX_WCHAR wch) { function in class:CFX_RTFBreak
H A Dfgas_textbreak.cpp548 uint32_t CFX_TxtBreak::AppendChar(FX_WCHAR wch) { function in class:CFX_TxtBreak
/external/pdfium/xfa/fxfa/app/
H A Dcxfa_textlayout.cpp692 bool bRet = AppendChar(wsText, fLinePos, fSpaceAbove, bSavePieces);
825 if (AppendChar(wsText, fLinePos, 0, bSavePieces)) {
889 bool CXFA_TextLayout::AppendChar(const CFX_WideString& wsText, function in class:CXFA_TextLayout
904 dwStatus = m_pBreak->AppendChar(wch);

Completed in 255 milliseconds