Searched refs:m_nChars (Results 1 - 5 of 5) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page.cpp103 m_nChars = 0;
108 if (m_nChars > 1 && m_pCharCodes) {
117 pInfo->m_CharCode = m_nChars == 1 ? (FX_DWORD)(FX_UINTPTR)m_pCharCodes : m_pCharCodes[index];
141 if (m_nChars == 1) {
145 for (int i = 0; i < m_nChars; i ++)
153 if (m_nChars == 1) {
159 for (int i = 0; i < m_nChars; i ++) {
163 if (i == m_nChars - 1 || m_pCharCodes[i + 1] != (FX_DWORD) - 1) {
176 if (m_nChars == 1) {
181 for (int i = 0; i < m_nChars;
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_text.cpp190 if(textobj->m_nChars == 0) {
296 return CPDF_TextRenderer::DrawTextPath(m_pDevice, textobj->m_nChars, textobj->m_pCharCodes, textobj->m_pCharPos, pFont, font_size,
300 return CPDF_TextRenderer::DrawNormalText(m_pDevice, textobj->m_nChars, textobj->m_pCharCodes, textobj->m_pCharPos, pFont, font_size,
392 pGlyphAndPos = FX_Alloc(FXTEXT_GLYPHPOS, textobj->m_nChars);
393 FXSYS_memset32(pGlyphAndPos, 0, sizeof(FXTEXT_GLYPHPOS) * textobj->m_nChars);
399 if (textobj->m_nChars == 1) {
402 for (int iChar = 0; iChar < textobj->m_nChars; iChar ++) {
497 FX_RECT rect = FXGE_GetGlyphsBBox(pGlyphAndPos, textobj->m_nChars, 0, sa, sd);
504 for (int iChar = 0; iChar < textobj->m_nChars; iChar ++) {
526 FX_DWORD m_nChars; member in class:CPDF_CharPosList
[all...]
H A Dfpdf_render.cpp868 CPDF_TextRenderer::DrawTextPath(&text_device, textobj->m_nChars, textobj->m_pCharCodes, textobj->m_pCharPos,
/external/pdfium/core/include/fpdfapi/
H A Dfpdf_pageobj.h526 return m_nChars;
585 nChars = m_nChars;
602 int m_nChars; member in class:CPDF_TextObject
/external/pdfium/core/src/fpdftext/
H A Dfpdf_text.cpp79 for (int i = 0; i < pText->m_nChars; i ++) {
80 FX_DWORD charcode = pText->m_nChars == 1 ? (FX_DWORD)(FX_UINTPTR)pText->m_pCharCodes : pText->m_pCharCodes[i];
117 for (int i = 0; i < pText->m_nChars; i ++) {
118 FX_DWORD charcode = pText->m_nChars == 1 ? (FX_DWORD)(FX_UINTPTR)pText->m_pCharCodes : pText->m_pCharCodes[i];

Completed in 505 milliseconds