Home
last modified time | relevance | path

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

12

/external/pdfium/core/src/fxcrt/
Dfx_bidi_unittest.cpp46 EXPECT_TRUE(bidi.AppendChar(kLeftChar)); in TEST()
51 EXPECT_FALSE(bidi.AppendChar(kLeftChar)); in TEST()
52 EXPECT_FALSE(bidi.AppendChar(kLeftChar)); in TEST()
73 EXPECT_TRUE(bidi.AppendChar(kLeftChar)); in TEST()
78 EXPECT_FALSE(bidi.AppendChar(kLeftChar)); in TEST()
79 EXPECT_FALSE(bidi.AppendChar(kLeftChar)); in TEST()
80 EXPECT_TRUE(bidi.AppendChar(kNeutralChar)); in TEST()
85 EXPECT_FALSE(bidi.AppendChar(kNeutralChar)); in TEST()
86 EXPECT_FALSE(bidi.AppendChar(kNeutralChar)); in TEST()
87 EXPECT_FALSE(bidi.AppendChar(kNeutralChar)); in TEST()
[all …]
Dfx_basic_utf.cpp13 void CFX_UTF8Decoder::AppendChar(FX_DWORD ch) { in AppendChar() function in CFX_UTF8Decoder
14 m_Buffer.AppendChar((FX_WCHAR)ch); in AppendChar()
19 m_Buffer.AppendChar(byte); in Input()
27 AppendChar(m_PendingChar); in Input()
48 m_Buffer.AppendChar(unicode); in Input()
68 m_Buffer.AppendChar(prefix[nbytes - 2] | (code / order)); in Input()
72 m_Buffer.AppendChar(0x80 | (code / order)); in Input()
Dfx_bidi.cpp22 bool CFX_BidiChar::AppendChar(FX_WCHAR wch) { in AppendChar() function in CFX_BidiChar
Dfx_xml_parser.cpp135 buf.AppendChar(ch); in GetName()
289 decoder.AppendChar(GetCharRef()); in GetAttrValue()
435 decoder.AppendChar(GetCharRef()); in ParseElement()
/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/xfa/src/fdp/src/css/
Dfde_csssyntax.cpp160 AppendChar(wch); in DoSyntaxParse()
186 AppendChar(wch); in DoSyntaxParse()
205 AppendChar(wch); in DoSyntaxParse()
214 m_TextData.AppendChar(wch); in DoSyntaxParse()
271 AppendChar(wch); in DoSyntaxParse()
294 AppendChar(wch); in DoSyntaxParse()
298 AppendChar(wch); in DoSyntaxParse()
346 AppendChar(wch); in DoSyntaxParse()
372 inline FX_BOOL CFDE_CSSSyntaxParser::AppendChar(FX_WCHAR wch) { in AppendChar() function in CFDE_CSSSyntaxParser
375 m_TextData.AppendChar(wch); in AppendChar()
Dfde_csssyntax.h19 FX_BOOL AppendChar(FX_WCHAR wch) { in AppendChar() function
31 AppendChar(0); in TrimEnd()
91 FX_BOOL AppendChar(FX_WCHAR wch);
/external/pdfium/core/src/fpdftext/
Dfpdf_text_search.cpp78 pFont->AppendChar(str, charCode); in GetCharWidth()
171 m_Buffer.AppendChar(L'\r'); in ProcessObject()
172 m_Buffer.AppendChar(L'\n'); in ProcessObject()
179 m_Buffer.AppendChar(' '); in ProcessObject()
187 m_Buffer.AppendChar(L' '); in ProcessObject()
268 m_Buffer.AppendChar(L' '); in ProcessObject()
281 m_Buffer.AppendChar((FX_WCHAR)item.m_CharCode); in ProcessObject()
Dfpdf_text_int.cpp968 pFont->AppendChar(str, charCode); in GetCharWidth()
983 m_TextBuf.AppendChar(str.GetAt(i)); in OnPiece()
989 m_TextBuf.AppendChar(str.GetAt(i)); in OnPiece()
1009 m_TextBuf.AppendChar(Info2.m_Unicode); in AddCharInfoByLRDirection()
1018 m_TextBuf.AppendChar(wChar); in AddCharInfoByLRDirection()
1040 m_TextBuf.AppendChar(Info2.m_Unicode); in AddCharInfoByRLDirection()
1049 m_TextBuf.AppendChar(Info.m_Unicode); in AddCharInfoByRLDirection()
1083 if (pBidiChar->AppendChar(str.GetAt(i))) { in CloseTempLine()
1412 m_TempTextBuf.AppendChar(wChar); in ProcessMarkedContent()
1468 if (pBidiChar->AppendChar(wChar)) { in IsRightToLeft()
[all …]
Dfpdf_text.cpp98 pFont->AppendChar(str, charcode); in ProcessObject()
141 pFont->AppendChar(segment, ' '); in ProcessObject()
147 pFont->AppendChar(segment, charcode); in ProcessObject()
323 if (pBidiChar->AppendChar(str.GetAt(i))) { in NormalizeString()
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_parser_old.cpp779 buf.AppendChar(')'); in ReadString()
782 buf.AppendChar('('); in ReadString()
786 buf.AppendChar((char)ch); in ReadString()
796 buf.AppendChar('\n'); in ReadString()
798 buf.AppendChar('\r'); in ReadString()
800 buf.AppendChar('\t'); in ReadString()
802 buf.AppendChar('\b'); in ReadString()
804 buf.AppendChar('\f'); in ReadString()
810 buf.AppendChar(ch); in ReadString()
819 buf.AppendChar(iEscCode); in ReadString()
[all …]
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_decode.cpp516 result.AppendChar('<'); in PDF_EncodeString()
518 result.AppendChar("0123456789ABCDEF"[src[i] / 16]); in PDF_EncodeString()
519 result.AppendChar("0123456789ABCDEF"[src[i] % 16]); in PDF_EncodeString()
521 result.AppendChar('>'); in PDF_EncodeString()
524 result.AppendChar('('); in PDF_EncodeString()
528 result.AppendChar('\\'); in PDF_EncodeString()
536 result.AppendChar(ch); in PDF_EncodeString()
538 result.AppendChar(')'); in PDF_EncodeString()
/external/pdfium/xfa/src/fee/src/fee/
Dfde_txtedtparag.cpp51 dwBreakStatus = pTxtBreak->AppendChar(wAppend); in LoadParag()
115 dwBreakStatus = pTxtBreak->AppendChar(wAppend); in CalcLines()
/external/pdfium/xfa/src/fxfa/src/fm2js/
Dxfa_fm2jscontext.cpp3756 wsResultBuf.AppendChar(chTemp); in DecodeURL()
3758 wsResultBuf.AppendChar(ch); in DecodeURL()
3762 wsResultBuf.AppendChar(0); in DecodeURL()
3821 wsResultBuf.AppendChar(ch); in DecodeHTML()
3827 wsResultBuf.AppendChar((FX_WCHAR)iData); in DecodeHTML()
3829 wsResultBuf.AppendChar(iCode); in DecodeHTML()
3835 wsResultBuf.AppendChar(0); in DecodeHTML()
3894 wsXMLBuf.AppendChar(ch); in DecodeXML()
3909 wsXMLBuf.AppendChar('"'); in DecodeXML()
3912 wsXMLBuf.AppendChar('&'); in DecodeXML()
[all …]
Dxfa_program.cpp42 wsJavaScript.AppendChar(0); in TranslateProgram()
Dxfa_simpleexpression.cpp121 javascript.AppendChar(L'\"'); in ToJavaScript()
135 default: { javascript.AppendChar(oneChar); } break; in ToJavaScript()
138 javascript.AppendChar(L'\"'); in ToJavaScript()
/external/pdfium/core/include/fxcrt/
Dfx_bidi.h23 bool AppendChar(FX_WCHAR wch);
/external/pdfium/fpdfsdk/src/fxedit/
Dfxet_ap.cpp28 pPDFFont->AppendChar(sWord, dwCharCode); in GetPDFWordString()
33 pPDFFont->AppendChar(sWord, Word); in GetPDFWordString()
/external/pdfium/xfa/src/fgas/include/
Dfx_rbk.h109 void AppendChar(const CFX_RTFChar& tc) { in AppendChar() function
211 virtual FX_DWORD AppendChar(FX_WCHAR wch) = 0;
/external/pdfium/xfa/src/fxfa/src/parser/
Dxfa_document_serialize.cpp93 textBuf.AppendChar(str[i]); in XFA_ExportEncodeAttribute()
118 textBuf.AppendChar(' '); in XFA_ExportEncodeContent()
123 textBuf.AppendChar(str.GetAt(i)); in XFA_ExportEncodeContent()
/external/pdfium/core/include/fpdfapi/
Dfpdf_resource.h165 void AppendChar(CFX_ByteString& str, FX_DWORD charcode) const;
167 virtual int AppendChar(FX_CHAR* buf, FX_DWORD charcode) const { in AppendChar() function
441 int AppendChar(FX_CHAR* str, FX_DWORD charcode) const override;
/external/pdfium/core/src/fpdfapi/fpdf_font/
Dfpdf_font.cpp128 void CPDF_Font::AppendChar(CFX_ByteString& str, FX_DWORD charcode) const { in AppendChar() function in CPDF_Font
130 int len = AppendChar(buf, charcode); in AppendChar()
190 dest_pos += AppendChar(dest_buf + dest_pos, charcode); in EncodeString()
581 m_MultiCharBuf.AppendChar(destcode.GetLength()); in Load()
612 m_MultiCharBuf.AppendChar(destcode.GetLength()); in Load()
635 m_MultiCharBuf.AppendChar(retcode.GetLength()); in Load()
Dfont_int.h136 int AppendChar(FX_CHAR* str, FX_DWORD charcode) const;
/external/pdfium/xfa/src/fdp/src/tto/
Dfde_textout.cpp250 dwBreakStatus = m_pTxtBreak->AppendChar(wch); in CalcTextSize()
461 dwBreakStatus = m_pTxtBreak->AppendChar(wch); in LoadEllipsis()
524 dwBreakStatus = m_pTxtBreak->AppendChar(wch); in LoadText()
719 dwBreakStatus = m_pTxtBreak->AppendChar(wch); in ReloadLinePiece()
/external/pdfium/xfa/src/fgas/src/layout/
Dfx_textbreak.h83 virtual FX_DWORD AppendChar(FX_WCHAR wch);

12