Home
last modified time | relevance | path

Searched refs:charInfo (Results 1 – 3 of 3) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/serializer/
DCharInfo.java491 CharInfo charInfo = (CharInfo) m_getCharInfoCache.get(entitiesFileName);
492 if (charInfo != null) {
493 return mutableCopyOf(charInfo);
498 charInfo = getCharInfoBasedOnPrivilege(entitiesFileName,
502 m_getCharInfoCache.put(entitiesFileName, charInfo);
503 return mutableCopyOf(charInfo);
535 private static CharInfo mutableCopyOf(CharInfo charInfo) {
538 int max = charInfo.array_of_bits.length;
539 System.arraycopy(charInfo.array_of_bits,0,copy.array_of_bits,0,max);
541 copy.firstWordNotUsed = charInfo.firstWordNotUsed;
[all …]
/external/pdfium/core/fpdftext/
Dcpdf_textpage.h134 bool IsControlChar(const PAGECHAR_INFO& charInfo);
Dcpdf_textpage.cpp151 bool CPDF_TextPage::IsControlChar(const PAGECHAR_INFO& charInfo) { in IsControlChar() argument
152 switch (charInfo.m_Unicode) { in IsControlChar()
161 return charInfo.m_Flag != FPDFTEXT_CHAR_HYPHEN; in IsControlChar()