Home
last modified time | relevance | path

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

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