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

  /external/pdfium/core/src/fxcrt/
fx_basic_utf.cpp 13 void CFX_UTF8Decoder::AppendChar(FX_DWORD ch)
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));
fx_arabic.h 22 virtual FX_BOOL AppendChar(FX_WCHAR wch) FX_OVERRIDE;
fx_arabic.cpp 24 FX_BOOL CFX_BidiChar::AppendChar(FX_WCHAR wch)
fx_xml_parser.cpp 140 buf.AppendChar(ch);
297 decoder.AppendChar(GetCharRef());
441 decoder.AppendChar(GetCharRef());
fx_basic_buffer.cpp 177 void CFX_WideTextBuf::AppendChar(FX_WCHAR ch)
  /external/pdfium/core/include/fxcrt/
fx_arb.h 18 virtual FX_BOOL AppendChar(FX_WCHAR wch) = 0;
fx_basic.h 100 void AppendChar(int ch)
128 void AppendChar(FX_WCHAR wch);
306 void AppendChar(FX_DWORD ch);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_printf.cc 34 static int AppendChar(char **buff, const char *buff_end, char c) {
57 result += AppendChar(buff, buff_end, '-');
75 result += AppendChar(buff, buff_end, c);
77 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
80 result += AppendChar(buff, buff_end, (digit < 10) ? '0' + digit
107 result += AppendChar(buff, buff_end, *s);
131 result += AppendChar(&buff, buff_end, *cur);
188 result += AppendChar(&buff, buff_end, va_arg(args, int));
193 result += AppendChar(&buff, buff_end, '%');
202 AppendChar(&buff, buff_end + 1, '\0')
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_parser_old.cpp 776 buf.AppendChar(')');
779 buf.AppendChar('(');
783 buf.AppendChar((char)ch);
793 buf.AppendChar('\n');
795 buf.AppendChar('\r');
797 buf.AppendChar('\t');
799 buf.AppendChar('\b');
801 buf.AppendChar('\f');
807 buf.AppendChar(ch);
816 buf.AppendChar(iEscCode)
    [all...]
  /external/pdfium/core/src/fpdftext/
fpdf_text_search.cpp 72 pFont->AppendChar(str, charCode);
157 m_Buffer.AppendChar(L'\r');
158 m_Buffer.AppendChar(L'\n');
165 m_Buffer.AppendChar(' ');
173 m_Buffer.AppendChar(L' ');
253 m_Buffer.AppendChar(L' ');
266 m_Buffer.AppendChar((FX_WCHAR)item.m_CharCode);
fpdf_text_int.cpp     [all...]
fpdf_text.cpp 93 pFont->AppendChar(str, charcode);
134 pFont->AppendChar(segment, ' ');
140 pFont->AppendChar(segment, charcode);
317 if(BidiChar->AppendChar(str.GetAt(i))) {
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_decode.cpp 481 result.AppendChar('<');
483 result.AppendChar("0123456789ABCDEF"[src[i] / 16]);
484 result.AppendChar("0123456789ABCDEF"[src[i] % 16]);
486 result.AppendChar('>');
489 result.AppendChar('(');
493 result.AppendChar('\\');
501 result.AppendChar(ch);
503 result.AppendChar(')');
fpdf_parser_parser.cpp     [all...]
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_ap.cpp 34 pPDFFont->AppendChar(sWord, dwCharCode);
39 pPDFFont->AppendChar(sWord, Word);
  /external/pdfium/core/src/fpdfapi/fpdf_font/
font_int.h 103 int AppendChar(FX_LPSTR str, FX_DWORD charcode) const;
fpdf_font.cpp 163 void CPDF_Font::AppendChar(CFX_ByteString& str, FX_DWORD charcode) const
166 int len = AppendChar(buf, charcode);
230 dest_pos += AppendChar(dest_buf + dest_pos, charcode);
652 m_MultiCharBuf.AppendChar(destcode.GetLength());
682 m_MultiCharBuf.AppendChar(destcode.GetLength());
705 m_MultiCharBuf.AppendChar(retcode.GetLength());
    [all...]
fpdf_font_cid.cpp 622 int CPDF_CMap::AppendChar(FX_LPSTR str, FX_DWORD charcode) const
    [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_resource.h 172 void AppendChar(CFX_ByteString& str, FX_DWORD charcode) const;
174 virtual int AppendChar(FX_LPSTR buf, FX_DWORD charcode) const
519 virtual int AppendChar(FX_LPSTR str, FX_DWORD charcode) const;
  /external/pdfium/core/src/fpdfdoc/
doc_ap.cpp 181 pPDFFont->AppendChar(sWord, dwCharCode);
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_fontmap.cpp 844 buf.AppendChar(pStyle[iIndex]);
    [all...]
  /external/pdfium/core/src/reflow/
layoutprocessor_reflow.cpp     [all...]

Completed in 344 milliseconds