Searched refs:pVertGlyph (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/core/fpdfapi/font/ |
D | cpdf_cidfont.cpp | 552 int CPDF_CIDFont::GetGlyphIndex(uint32_t unicode, bool* pVertGlyph) { in GetGlyphIndex() argument 553 if (pVertGlyph) in GetGlyphIndex() 554 *pVertGlyph = false; in GetGlyphIndex() 565 return GetVerticalGlyph(index, pVertGlyph); in GetGlyphIndex() 580 return GetVerticalGlyph(index, pVertGlyph); in GetGlyphIndex() 583 int CPDF_CIDFont::GetVerticalGlyph(int index, bool* pVertGlyph) { in GetVerticalGlyph() argument 589 if (pVertGlyph) in GetVerticalGlyph() 590 *pVertGlyph = true; in GetVerticalGlyph() 594 int CPDF_CIDFont::GlyphFromCharCode(uint32_t charcode, bool* pVertGlyph) { in GlyphFromCharCode() argument 595 if (pVertGlyph) in GlyphFromCharCode() [all …]
|
D | cpdf_cidfont.h | 48 int GlyphFromCharCode(uint32_t charcode, bool* pVertGlyph) override; 70 int GetGlyphIndex(uint32_t unicodeb, bool* pVertGlyph); 71 int GetVerticalGlyph(int index, bool* pVertGlyph);
|
D | cpdf_simplefont.cpp | 42 int CPDF_SimpleFont::GlyphFromCharCode(uint32_t charcode, bool* pVertGlyph) { in GlyphFromCharCode() argument 43 if (pVertGlyph) in GlyphFromCharCode() 44 *pVertGlyph = false; in GlyphFromCharCode()
|
D | cpdf_simplefont.h | 24 int GlyphFromCharCode(uint32_t charcode, bool* pVertGlyph) override;
|
D | cpdf_font.h | 90 virtual int GlyphFromCharCode(uint32_t charcode, bool* pVertGlyph) = 0;
|