Searched refs:pVertGlyph (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/core/fpdfapi/font/ |
D | cpdf_cidfont.cpp | 556 int CPDF_CIDFont::GetGlyphIndex(uint32_t unicode, bool* pVertGlyph) { in GetGlyphIndex() argument 557 if (pVertGlyph) in GetGlyphIndex() 558 *pVertGlyph = false; in GetGlyphIndex() 569 return GetVerticalGlyph(index, pVertGlyph); in GetGlyphIndex() 585 return GetVerticalGlyph(index, pVertGlyph); in GetGlyphIndex() 588 int CPDF_CIDFont::GetVerticalGlyph(int index, bool* pVertGlyph) { in GetVerticalGlyph() argument 595 if (pVertGlyph) in GetVerticalGlyph() 596 *pVertGlyph = true; in GetVerticalGlyph() 600 int CPDF_CIDFont::GlyphFromCharCode(uint32_t charcode, bool* pVertGlyph) { in GlyphFromCharCode() argument 601 if (pVertGlyph) in GlyphFromCharCode() [all …]
|
D | cpdf_cidfont.h | 45 int GlyphFromCharCode(uint32_t charcode, bool* pVertGlyph) override; 67 int GetGlyphIndex(uint32_t unicodeb, bool* pVertGlyph); 68 int GetVerticalGlyph(int index, bool* pVertGlyph);
|
D | cpdf_simplefont.cpp | 25 int CPDF_SimpleFont::GlyphFromCharCode(uint32_t charcode, bool* pVertGlyph) { in GlyphFromCharCode() argument 26 if (pVertGlyph) in GlyphFromCharCode() 27 *pVertGlyph = false; in GlyphFromCharCode()
|
D | cpdf_simplefont.h | 25 int GlyphFromCharCode(uint32_t charcode, bool* pVertGlyph) override;
|
D | cpdf_font.h | 58 virtual int GlyphFromCharCode(uint32_t charcode, bool* pVertGlyph) = 0;
|