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

1 2

  /external/pdfium/xfa/fgas/layout/
cfx_rtfbreak_unittest.cpp 44 EXPECT_EQ(CFX_BreakType::None, b->AppendChar(c));
46 EXPECT_EQ(CFX_BreakType::Paragraph, b->AppendChar(L'\n'));
56 EXPECT_EQ(CFX_BreakType::None, b->AppendChar(c));
66 EXPECT_EQ(CFX_BreakType::Line, b->AppendChar(L'\v'));
67 EXPECT_EQ(CFX_BreakType::Page, b->AppendChar(L'\f'));
69 EXPECT_EQ(CFX_BreakType::Paragraph, b->AppendChar(0x2029));
70 EXPECT_EQ(CFX_BreakType::Paragraph, b->AppendChar(L'\n'));
cfx_rtfbreak.h 64 CFX_BreakType AppendChar(wchar_t wch);
cfx_txtbreak.h 71 CFX_BreakType AppendChar(wchar_t wch);
  /external/pdfium/core/fxcrt/css/
cfx_csstextbuf.h 18 void AppendChar(wchar_t wch);
cfx_csstextbuf.cpp 24 void CFX_CSSTextBuf::AppendChar(wchar_t wch) {
34 AppendChar(0);
cfx_csssyntaxparser.cpp 113 AppendChar(wch);
137 AppendChar(wch);
155 AppendChar(wch);
164 m_TextData.AppendChar(wch);
190 bool CFX_CSSSyntaxParser::AppendChar(wchar_t wch) {
193 m_TextData.AppendChar(wch);
cfx_csssyntaxparser.h 57 bool AppendChar(wchar_t wch);
  /external/pdfium/core/fxcrt/
cfx_utf8decoder.cpp 15 m_Buffer.AppendChar(static_cast<wchar_t>(ch));
21 m_Buffer.AppendChar(byte);
fx_bidi_unittest.cpp 31 EXPECT_TRUE(bidi.AppendChar(kLeftChar));
36 EXPECT_FALSE(bidi.AppendChar(kLeftChar));
37 EXPECT_FALSE(bidi.AppendChar(kLeftChar));
57 EXPECT_TRUE(bidi.AppendChar(kLeftChar));
62 EXPECT_FALSE(bidi.AppendChar(kLeftChar));
63 EXPECT_FALSE(bidi.AppendChar(kLeftChar));
64 EXPECT_TRUE(bidi.AppendChar(kNeutralChar));
69 EXPECT_FALSE(bidi.AppendChar(kNeutralChar));
70 EXPECT_FALSE(bidi.AppendChar(kNeutralChar));
71 EXPECT_FALSE(bidi.AppendChar(kNeutralChar))
    [all...]
cfx_widetextbuf.h 16 void AppendChar(wchar_t wch);
cfx_widetextbuf.cpp 13 void CFX_WideTextBuf::AppendChar(wchar_t ch) {
fx_bidi.h 35 bool AppendChar(wchar_t wch);
37 // Call this after the last character has been appended. AppendChar()
  /external/perfetto/src/trace_processor/
ftrace_utils.cc 162 writer->AppendChar(' ', static_cast<size_t>(padding));
165 writer->AppendChar('-');
171 writer->AppendChar(' ', 5 - pid_chars);
185 writer->AppendChar('.');
187 writer->AppendChar(':');
raw_table.cc 113 writer->AppendChar(' ');
115 writer->AppendChar('=');
205 writer->AppendChar(' ');
246 writer.AppendChar(' ');
252 writer.AppendChar(':');
  /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/perfetto/tools/trace_to_text/
trace_to_systrace.cc 114 writer->AppendChar(' ');
116 writer->AppendChar(' ');
275 writer->AppendChar('\\');
276 writer->AppendChar(c);
278 writer->AppendChar('\\');
279 writer->AppendChar('n');
282 writer->AppendChar('\n');
  /external/perfetto/src/base/
string_writer_unittest.cc 30 writer.AppendChar('0');
97 writer.AppendChar('x', sizeof(buffer));
106 writer.AppendChar('0');
  /external/pdfium/core/fpdfapi/font/
cpdf_font.h 60 virtual int AppendChar(char* buf, uint32_t charcode) const;
73 void AppendChar(ByteString* str, uint32_t charcode) const;
cpdf_cidfont.h 53 int AppendChar(char* str, uint32_t charcode) const override;
cpdf_cmap.h 66 int AppendChar(char* str, uint32_t charcode) const;
cpdf_tounicodemap.cpp 152 m_MultiCharBuf.AppendChar(destcode.GetLength());
183 m_MultiCharBuf.AppendChar(destcode.GetLength());
206 m_MultiCharBuf.AppendChar(retcode.GetLength());
  /external/pdfium/fxjs/
cfxjse_formcalc_context.cpp     [all...]
  /external/pdfium/xfa/fxfa/
cxfa_textlayout.h 84 bool AppendChar(const WideString& wsText,
  /external/perfetto/include/perfetto/base/
string_writer.h 41 void AppendChar(char in, size_t n = 1) {
  /external/pdfium/core/fpdftext/
cpdf_textpage.cpp 548 m_TextBuf.AppendChar(unicode);
606 pFont->AppendChar(&str, charCode);
632 m_TextBuf.AppendChar(info2.m_Unicode);
639 m_TextBuf.AppendChar(wChar);
662 m_TextBuf.AppendChar(info2.m_Unicode);
669 m_TextBuf.AppendChar(info.m_Unicode);
884 m_TempTextBuf.AppendChar(wChar);
965 m_TempTextBuf.AppendChar(TEXT_SPACE_CHAR);
999 m_TempTextBuf.AppendChar(0xfffe);
    [all...]

Completed in 485 milliseconds

1 2