Home
last modified time | relevance | path

Searched refs:char_info (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/fpdftext/
Dcpdf_linkextract.cpp122 const CPDF_TextPage::CharInfo& char_info = m_pTextPage->GetCharInfo(pos); in ExtractLinks() local
123 if (char_info.m_CharType != CPDF_TextPage::CharType::kGenerated && in ExtractLinks()
124 char_info.m_Unicode != L' ' && pos != nTotalChar - 1) { in ExtractLinks()
126 (char_info.m_CharType == CPDF_TextPage::CharType::kHyphen || in ExtractLinks()
127 (char_info.m_CharType == CPDF_TextPage::CharType::kNormal && in ExtractLinks()
128 char_info.m_Unicode == L'-')); in ExtractLinks()
137 (char_info.m_Unicode == L'\n' || char_info.m_Unicode == L'\r')) { in ExtractLinks()
Dcpdf_textpage.cpp115 bool IsControlChar(const CPDF_TextPage::CharInfo& char_info) { in IsControlChar() argument
116 switch (char_info.m_Unicode) { in IsControlChar()
125 return char_info.m_CharType != CPDF_TextPage::CharType::kHyphen; in IsControlChar()