Home
last modified time | relevance | path

Searched refs:AppendChar (Results 1 – 25 of 40) sorted by relevance

12

/external/pdfium/xfa/fgas/layout/
Dcfx_rtfbreak_unittest.cpp44 EXPECT_EQ(CFX_BreakType::None, b->AppendChar(c)); in TEST_F()
46 EXPECT_EQ(CFX_BreakType::Paragraph, b->AppendChar(L'\n')); in TEST_F()
56 EXPECT_EQ(CFX_BreakType::None, b->AppendChar(c)); in TEST_F()
66 EXPECT_EQ(CFX_BreakType::Line, b->AppendChar(L'\v')); in TEST_F()
67 EXPECT_EQ(CFX_BreakType::Page, b->AppendChar(L'\f')); in TEST_F()
69 EXPECT_EQ(CFX_BreakType::Paragraph, b->AppendChar(0x2029)); in TEST_F()
70 EXPECT_EQ(CFX_BreakType::Paragraph, b->AppendChar(L'\n')); in TEST_F()
Dcfx_rtfbreak.h64 CFX_BreakType AppendChar(wchar_t wch);
Dcfx_txtbreak.h71 CFX_BreakType AppendChar(wchar_t wch);
/external/pdfium/core/fxcrt/
Dfx_bidi_unittest.cpp31 EXPECT_TRUE(bidi.AppendChar(kLeftChar)); in TEST()
36 EXPECT_FALSE(bidi.AppendChar(kLeftChar)); in TEST()
37 EXPECT_FALSE(bidi.AppendChar(kLeftChar)); in TEST()
57 EXPECT_TRUE(bidi.AppendChar(kLeftChar)); in TEST()
62 EXPECT_FALSE(bidi.AppendChar(kLeftChar)); in TEST()
63 EXPECT_FALSE(bidi.AppendChar(kLeftChar)); in TEST()
64 EXPECT_TRUE(bidi.AppendChar(kNeutralChar)); in TEST()
69 EXPECT_FALSE(bidi.AppendChar(kNeutralChar)); in TEST()
70 EXPECT_FALSE(bidi.AppendChar(kNeutralChar)); in TEST()
71 EXPECT_FALSE(bidi.AppendChar(kNeutralChar)); in TEST()
[all …]
Dcfx_utf8decoder.cpp15 m_Buffer.AppendChar(static_cast<wchar_t>(ch)); in AppendCodePoint()
21 m_Buffer.AppendChar(byte); in Input()
Dcfx_widetextbuf.h16 void AppendChar(wchar_t wch);
Dfx_bidi.h35 bool AppendChar(wchar_t wch);
Dcfx_widetextbuf.cpp13 void CFX_WideTextBuf::AppendChar(wchar_t ch) { in AppendChar() function in CFX_WideTextBuf
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_printf.cc33 static int AppendChar(char **buff, const char *buff_end, char c) { in AppendChar() function
56 result += AppendChar(buff, buff_end, '-'); in AppendNumber()
74 result += AppendChar(buff, buff_end, c); in AppendNumber()
76 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-'); in AppendNumber()
79 result += AppendChar(buff, buff_end, (digit < 10) ? '0' + digit in AppendNumber()
106 result += AppendChar(buff, buff_end, *s); in AppendString()
130 result += AppendChar(&buff, buff_end, *cur); in VSNPrintf()
187 result += AppendChar(&buff, buff_end, va_arg(args, int)); in VSNPrintf()
192 result += AppendChar(&buff, buff_end, '%'); in VSNPrintf()
201 AppendChar(&buff, buff_end + 1, '\0'); in VSNPrintf()
/external/pdfium/core/fxcrt/css/
Dcfx_csssyntaxparser.cpp113 AppendChar(wch); in DoSyntaxParse()
137 AppendChar(wch); in DoSyntaxParse()
155 AppendChar(wch); in DoSyntaxParse()
164 m_TextData.AppendChar(wch); in DoSyntaxParse()
190 bool CFX_CSSSyntaxParser::AppendChar(wchar_t wch) { in AppendChar() function in CFX_CSSSyntaxParser
193 m_TextData.AppendChar(wch); in AppendChar()
Dcfx_csstextbuf.cpp24 void CFX_CSSTextBuf::AppendChar(wchar_t wch) { in AppendChar() function in CFX_CSSTextBuf
34 AppendChar(0); in TrimEnd()
Dcfx_csstextbuf.h18 void AppendChar(wchar_t wch);
Dcfx_csssyntaxparser.h57 bool AppendChar(wchar_t wch);
/external/perfetto/tools/trace_to_text/
Dtrace_to_systrace.cc114 writer->AppendChar(' '); in FormatThread()
116 writer->AppendChar(' '); in FormatThread()
275 writer->AppendChar('\\'); in TraceToSystrace()
276 writer->AppendChar(c); in TraceToSystrace()
278 writer->AppendChar('\\'); in TraceToSystrace()
279 writer->AppendChar('n'); in TraceToSystrace()
282 writer->AppendChar('\n'); in TraceToSystrace()
/external/perfetto/src/trace_processor/
Dftrace_utils.cc162 writer->AppendChar(' ', static_cast<size_t>(padding)); in FormatSystracePrefix()
165 writer->AppendChar('-'); in FormatSystracePrefix()
171 writer->AppendChar(' ', 5 - pid_chars); in FormatSystracePrefix()
185 writer->AppendChar('.'); in FormatSystracePrefix()
187 writer->AppendChar(':'); in FormatSystracePrefix()
Draw_table.cc113 writer->AppendChar(' '); in FormatSystraceArgs()
115 writer->AppendChar('='); in FormatSystraceArgs()
205 writer->AppendChar(' '); in FormatSystraceArgs()
246 writer.AppendChar(' '); in ToSystrace()
252 writer.AppendChar(':'); in ToSystrace()
/external/perfetto/src/base/
Dstring_writer_unittest.cc30 writer.AppendChar('0'); in TEST()
97 writer.AppendChar('x', sizeof(buffer)); in TEST()
106 writer.AppendChar('0'); in TEST()
/external/pdfium/core/fpdfapi/font/
Dcpdf_tounicodemap.cpp152 m_MultiCharBuf.AppendChar(destcode.GetLength()); in Load()
183 m_MultiCharBuf.AppendChar(destcode.GetLength()); in Load()
206 m_MultiCharBuf.AppendChar(retcode.GetLength()); in Load()
Dcpdf_font.h60 virtual int AppendChar(char* buf, uint32_t charcode) const;
73 void AppendChar(ByteString* str, uint32_t charcode) const;
Dcpdf_font.cpp138 int CPDF_Font::AppendChar(char* buf, uint32_t charcode) const { in AppendChar() function in CPDF_Font
143 void CPDF_Font::AppendChar(ByteString* str, uint32_t charcode) const { in AppendChar() function in CPDF_Font
145 int len = AppendChar(buf, charcode); in AppendChar()
Dcpdf_cmap.h66 int AppendChar(char* str, uint32_t charcode) const;
Dcpdf_cidfont.h53 int AppendChar(char* str, uint32_t charcode) const override;
/external/pdfium/core/fpdftext/
Dcpdf_textpage.cpp548 m_TextBuf.AppendChar(unicode); in AppendGeneratedCharacter()
606 pFont->AppendChar(&str, charCode); in GetCharWidth()
632 m_TextBuf.AppendChar(info2.m_Unicode); in AddCharInfoByLRDirection()
639 m_TextBuf.AppendChar(wChar); in AddCharInfoByLRDirection()
662 m_TextBuf.AppendChar(info2.m_Unicode); in AddCharInfoByRLDirection()
669 m_TextBuf.AppendChar(info.m_Unicode); in AddCharInfoByRLDirection()
884 m_TempTextBuf.AppendChar(wChar); in ProcessMarkedContent()
965 m_TempTextBuf.AppendChar(TEXT_SPACE_CHAR); in ProcessTextObject()
999 m_TempTextBuf.AppendChar(0xfffe); in ProcessTextObject()
1070 m_TempTextBuf.AppendChar(TEXT_SPACE_CHAR); in ProcessTextObject()
[all …]
/external/pdfium/fxjs/
Dcfxjse_formcalc_context.cpp3264 wsResultBuf.AppendChar(ch); in DecodeURL()
3286 wsResultBuf.AppendChar(chTemp); in DecodeURL()
3289 wsResultBuf.AppendChar(0); in DecodeURL()
3305 wsResultBuf.AppendChar(ch); in DecodeHTML()
3351 wsResultBuf.AppendChar((wchar_t)iData); in DecodeHTML()
3353 wsResultBuf.AppendChar(iCode); in DecodeHTML()
3359 wsResultBuf.AppendChar(0); in DecodeHTML()
3377 wsResultBuf.AppendChar(ch); in DecodeXML()
3432 wsResultBuf.AppendChar('"'); in DecodeXML()
3435 wsResultBuf.AppendChar('&'); in DecodeXML()
[all …]
/external/pdfium/xfa/fxfa/parser/
Dxfa_utils.cpp72 textBuf.AppendChar(str[i]); in ExportEncodeAttribute()
103 textBuf.AppendChar(' '); in ExportEncodeContent()
108 textBuf.AppendChar(str[i]); in ExportEncodeContent()

12