Home
last modified time | relevance | path

Searched refs:iChars (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/xfa/fxfa/
Dcxfa_ffdoc.cpp71 int32_t iChars, in Base64DecodePiece() argument
74 ASSERT(iChars > 0 && iChars < 5); in Base64DecodePiece()
77 if (iChars > 1) { in Base64DecodePiece()
81 if (iChars > 2) { in Base64DecodePiece()
86 if (iChars > 3) { in Base64DecodePiece()
125 int32_t iChars = 4, iBytes; in Base64DecodeW() local
144 iChars = iSrcLen; in Base64DecodeW()
147 Base64DecodePiece(srcData, iChars, dstData, iBytes); in Base64DecodeW()
Dcxfa_textlayout.cpp590 int32_t iChars = pPiece->iChars; in DrawString() local
591 if (iCharCount < iChars) { in DrawString()
593 pCharPos = FX_Alloc(FXTEXT_CHARPOS, iChars); in DrawString()
594 iCharCount = iChars; in DrawString()
984 int32_t iChars = pPiece->iChars; in DoTabstops() local
985 for (int32_t i = 0; i < iChars; i++) { in DoTabstops()
1027 pTP->iChars = pPiece->m_iChars; in AppendTextLine()
1163 int32_t iChars = GetDisplayPos(pPiece, pCharPos); in RenderPath() local
1164 if (iChars > 0) { in RenderPath()
1169 for (int32_t j = 0; j < iChars; j++) { in RenderPath()
[all …]
Dcxfa_textpiece.h27 int32_t iChars; variable
/external/pdfium/xfa/fde/
Dcfde_textout.cpp403 ttoPiece.iChars = j; in RetrievePieces()
472 int32_t iEnd = pPiece->iChars + iStar; in ReloadLinePiece()
516 ASSERT(pPiece->iChars >= 0); in GetDisplayPos()
518 if (pdfium::CollectionSize<int32_t>(m_CharPos) < pPiece->iChars) in GetDisplayPos()
519 m_CharPos.resize(pPiece->iChars, FXTEXT_CHARPOS()); in GetDisplayPos()
524 tr.iLength = pPiece->iChars; in GetDisplayPos()
Dcfde_data.h41 int32_t iChars; member
/external/pdfium/fxjs/xfa/
Dcjx_object.cpp997 int32_t iChars = iBytes / sizeof(wchar_t); in GetMapModuleString() local
998 wsValue = WideStringView(iChars ? (const wchar_t*)pValue : nullptr, iChars); in GetMapModuleString()