Home
last modified time | relevance | path

Searched refs:GetGlyphWidth (Results 1 – 12 of 12) sorted by relevance

/external/pdfium/fxbarcode/oned/
DBC_OneDimWriter.cpp119 int glyph_value = cFont->GetGlyphWidth(glyph_code); in CalcTextInfo()
134 charPos[0].m_FontCharWidth = cFont->GetGlyphWidth(charPos[0].m_GlyphIndex); in CalcTextInfo()
142 charPos[i].m_FontCharWidth = cFont->GetGlyphWidth(charPos[i].m_GlyphIndex); in CalcTextInfo()
/external/pdfium/core/fxge/
Dcfx_font.h109 int GetGlyphWidth(uint32_t glyph_index) const;
110 int GetGlyphWidth(uint32_t glyph_index, int dest_width, int weight) const;
Dcfx_glyphcache.h45 int GetGlyphWidth(const CFX_Font* font,
Dcfx_font.cpp414 int CFX_Font::GetGlyphWidth(uint32_t glyph_index) const { in GetGlyphWidth() function in CFX_Font
415 return GetGlyphWidth(glyph_index, 0, 0); in GetGlyphWidth()
418 int CFX_Font::GetGlyphWidth(uint32_t glyph_index, in GetGlyphWidth() function in CFX_Font
421 return GetOrCreateGlyphCache()->GetGlyphWidth(this, glyph_index, dest_width, in GetGlyphWidth()
Dcfx_glyphcache.cpp321 int CFX_GlyphCache::GetGlyphWidth(const CFX_Font* font, in GetGlyphWidth() function in CFX_GlyphCache
/external/pdfium/core/fpdfapi/page/
Dcpdf_docpagedata.cpp93 widths[i] = pFont->GetGlyphWidth(glyph_index); in InsertWidthArray1()
501 int char_width = pFont->GetGlyphWidth(glyph_index); in AddFont()
510 int char_width = pFont->GetGlyphWidth(glyph_index); in AddFont()
519 int char_width = pFont->GetGlyphWidth(glyph_index); in AddFont()
547 nStemV = pFont->GetGlyphWidth(glyph); in AddFont()
550 int width = pFont->GetGlyphWidth(glyph); in AddFont()
/external/pdfium/core/fxge/android/
Dcfpf_skiafont.h39 int32_t GetGlyphWidth(int32_t iGlyphIndex);
Dcfpf_skiafont.cpp53 int32_t CFPF_SkiaFont::GetGlyphWidth(int32_t iGlyphIndex) { in GetGlyphWidth() function in CFPF_SkiaFont
/external/pdfium/core/fpdfapi/render/
Dcharposlist.cpp149 current_font->GetGlyphWidth(text_char_pos.m_GlyphIndex); in GetCharPosList()
/external/pdfium/xfa/fgas/font/
Dcfgas_gefont.cpp168 int32_t width_from_cfx_font = m_pFont->GetGlyphWidth(glyph); in GetCharWidth()
/external/pdfium/fpdfsdk/
Dfpdf_edittext.cpp312 widthsArray->AppendNew<CPDF_Number>(pFont->GetGlyphWidth(dwGlyphIndex)); in LoadSimpleFont()
384 widths[dwGlyphIndex] = pFont->GetGlyphWidth(dwGlyphIndex); in LoadCompositeFont()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp929 const int glyph_width = pFont->GetGlyphWidth( in DrawDeviceText()