Home
last modified time | relevance | path

Searched refs:m_CharCodes (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/fpdfapi/page/
Dcpdf_textobject.cpp25 return pdfium::CollectionSize<int>(m_CharCodes); in CountItems()
29 pInfo->m_CharCode = m_CharCodes[index]; in GetItemInfo()
54 for (uint32_t charcode : m_CharCodes) { in CountChars()
65 for (size_t i = 0; i < m_CharCodes.size(); ++i) { in GetCharInfo()
66 if (m_CharCodes[i] == CPDF_Font::kInvalidCharCode) in GetCharInfo()
70 *charcode = m_CharCodes[i]; in GetCharInfo()
71 if (i == m_CharCodes.size() - 1 || in GetCharInfo()
72 m_CharCodes[i + 1] != CPDF_Font::kInvalidCharCode) { in GetCharInfo()
83 for (int i = 0; i < pdfium::CollectionSize<int>(m_CharCodes); ++i) { in GetCharInfo()
84 uint32_t charcode = m_CharCodes[i]; in GetCharInfo()
[all …]
Dcpdf_textobject.h68 std::vector<uint32_t> m_CharCodes; variable
/external/pdfium/core/fpdfapi/edit/
Dcpdf_pagecontentgenerator.cpp270 for (uint32_t charcode : pTextObj->m_CharCodes) { in ProcessText()
/external/pdfium/core/fpdfapi/render/
Dcpdf_renderstatus.cpp1570 &text_device, textobj->m_CharCodes, textobj->m_CharPos, in ProcessTransparency()
1692 if (textobj->m_CharCodes.empty()) in ProcessText()
1785 m_pDevice, textobj->m_CharCodes, textobj->m_CharPos, pFont, font_size, in ProcessText()
1790 return CPDF_TextRenderer::DrawNormalText(m_pDevice, textobj->m_CharCodes, in ProcessText()
1822 glyphs.resize(textobj->m_CharCodes.size()); in ProcessType3Text()
1827 for (int iChar = 0; iChar < pdfium::CollectionSize<int>(textobj->m_CharCodes); in ProcessType3Text()
1829 uint32_t charcode = textobj->m_CharCodes[iChar]; in ProcessType3Text()
1993 CharPosList.Load(textobj->m_CharCodes, textobj->m_CharPos, pFont, font_size); in DrawTextPathWithPattern()