HomeSort by relevance Sort by last modified time
    Searched refs:charpos (Results 1 - 5 of 5) sorted by null

  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 553 FXTEXT_CHARPOS& charpos = m_pCharPos[m_nChars++]; local
555 charpos.m_bFontStyle = pCIDFont->IsFontStyleFromCharCode(CharCode);
557 charpos.m_GlyphIndex = pFont->GlyphFromCharCode(CharCode, &bVert);
559 charpos.m_ExtGID = pFont->GlyphFromCharCodeExt(CharCode);
562 charpos.m_FontCharWidth = pFont->GetCharWidthF(CharCode);
564 charpos.m_FontCharWidth = 0;
566 charpos.m_OriginX = iChar ? pCharPos[iChar - 1] : 0;
567 charpos.m_OriginY = 0;
568 charpos.m_bGlyphAdjust = FALSE;
574 charpos.m_OriginY = charpos.m_OriginX;
731 FXTEXT_CHARPOS& charpos = CharPosList.m_pCharPos[i]; local
    [all...]
  /external/pdfium/core/src/reflow/
reflowedpage.cpp 476 FXTEXT_CHARPOS charpos ;
477 charpos.m_GlyphIndex = pPDFFont->GlyphFromCharCode(pCharData->m_CharCode);
478 charpos.m_FontCharWidth = pPDFFont->m_Font.GetGlyphWidth(charpos.m_GlyphIndex);
479 charpos.m_OriginX = x;
480 charpos.m_OriginY = y;
482 if(charW != charpos.m_FontCharWidth) {
483 charpos.m_bGlyphAdjust = TRUE;
484 charpos.m_AdjustMatrix[0] = charW / charpos.m_FontCharWidth
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_ps.cpp 509 void CFX_PSRenderer::FindPSFontGlyph(CFX_FaceCache* pFaceCache, CFX_Font* pFont, const FXTEXT_CHARPOS& charpos,
515 if (pPSFont->m_Glyphs[j].m_pFont == pFont && pPSFont->m_Glyphs[j].m_GlyphIndex == charpos.m_GlyphIndex) {
516 if ((!pPSFont->m_Glyphs[j].m_bGlyphAdjust && !charpos.m_bGlyphAdjust) ||
517 (pPSFont->m_Glyphs[j].m_bGlyphAdjust && charpos.m_bGlyphAdjust &&
518 (FXSYS_fabs(pPSFont->m_Glyphs[j].m_AdjustMatrix[0] - charpos.m_AdjustMatrix[0]) < 0.01 &&
519 FXSYS_fabs(pPSFont->m_Glyphs[j].m_AdjustMatrix[1] - charpos.m_AdjustMatrix[1]) < 0.01 &&
520 FXSYS_fabs(pPSFont->m_Glyphs[j].m_AdjustMatrix[2] - charpos.m_AdjustMatrix[2]) < 0.01 &&
521 FXSYS_fabs(pPSFont->m_Glyphs[j].m_AdjustMatrix[3] - charpos.m_AdjustMatrix[3]) < 0.01))) {
549 pPSFont->m_Glyphs[ps_glyphindex].m_GlyphIndex = charpos.m_GlyphIndex;
551 pPSFont->m_Glyphs[ps_glyphindex].m_bGlyphAdjust = charpos.m_bGlyphAdjust;
    [all...]
fx_ge_text.cpp 240 const FXTEXT_CHARPOS& charpos = pCharPos[iChar]; local
241 glyph.m_fOriginX = charpos.m_OriginX;
242 glyph.m_fOriginY = charpos.m_OriginY;
250 if (charpos.m_bGlyphAdjust) {
251 CFX_AffineMatrix new_matrix(charpos.m_AdjustMatrix[0], charpos.m_AdjustMatrix[1],
252 charpos.m_AdjustMatrix[2], charpos.m_AdjustMatrix[3], 0, 0);
254 glyph.m_pGlyph = pFaceCache->LoadGlyphBitmap(pFont, charpos.m_GlyphIndex, charpos.m_bFontStyle, &new_matrix,
957 const FXTEXT_CHARPOS& charpos = pCharPos[iChar]; local
    [all...]
  /external/pdfium/core/include/fxge/
fx_ge.h 729 void FindPSFontGlyph(CFX_FaceCache* pFaceCache, CFX_Font* pFont, const FXTEXT_CHARPOS& charpos, int& ps_fontnum, int &ps_glyphindex);

Completed in 71 milliseconds