Searched refs:m_AdjustMatrix (Results 1 – 10 of 10) sorted by relevance
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_charposlist.cpp | 102 charpos.m_AdjustMatrix[0] = scalingFactor; in CPDF_CharPosList() 103 charpos.m_AdjustMatrix[1] = 0.0f; in CPDF_CharPosList() 104 charpos.m_AdjustMatrix[2] = 0.0f; in CPDF_CharPosList() 105 charpos.m_AdjustMatrix[3] = 1.0f; in CPDF_CharPosList() 125 charpos.m_AdjustMatrix[0] = in CPDF_CharPosList() 127 charpos.m_AdjustMatrix[1] = in CPDF_CharPosList() 129 charpos.m_AdjustMatrix[2] = pCIDFont->CIDTransformToFloat(pTransform[2]); in CPDF_CharPosList() 130 charpos.m_AdjustMatrix[3] = pCIDFont->CIDTransformToFloat(pTransform[3]); in CPDF_CharPosList()
|
D | cpdf_renderstatus.cpp | 1158 matrix = CFX_Matrix(charpos.m_AdjustMatrix[0], charpos.m_AdjustMatrix[1], in DrawTextPathWithPattern() 1159 charpos.m_AdjustMatrix[2], charpos.m_AdjustMatrix[3], in DrawTextPathWithPattern()
|
/external/pdfium/core/fxge/win32/ |
D | cfx_psrenderer.cpp | 31 float m_AdjustMatrix[4]; member 479 (fabs(pPSFont->m_Glyphs[j].m_AdjustMatrix[0] - in FindPSFontGlyph() 480 charpos.m_AdjustMatrix[0]) < 0.01 && in FindPSFontGlyph() 481 fabs(pPSFont->m_Glyphs[j].m_AdjustMatrix[1] - in FindPSFontGlyph() 482 charpos.m_AdjustMatrix[1]) < 0.01 && in FindPSFontGlyph() 483 fabs(pPSFont->m_Glyphs[j].m_AdjustMatrix[2] - in FindPSFontGlyph() 484 charpos.m_AdjustMatrix[2]) < 0.01 && in FindPSFontGlyph() 485 fabs(pPSFont->m_Glyphs[j].m_AdjustMatrix[3] - in FindPSFontGlyph() 486 charpos.m_AdjustMatrix[3]) < 0.01)))) { in FindPSFontGlyph() 522 pPSFont->m_Glyphs[glyphindex].m_AdjustMatrix[0] = charpos.m_AdjustMatrix[0]; in FindPSFontGlyph() [all …]
|
D | fx_win32_print.cpp | 299 ASSERT(charpos.m_AdjustMatrix[0] == 0); in DrawDeviceText() 300 ASSERT(charpos.m_AdjustMatrix[1] == 0); in DrawDeviceText() 301 ASSERT(charpos.m_AdjustMatrix[2] == 0); in DrawDeviceText() 302 ASSERT(charpos.m_AdjustMatrix[3] == 0); in DrawDeviceText() 654 ASSERT(charpos.m_AdjustMatrix[0] == 0); in DrawDeviceText() 655 ASSERT(charpos.m_AdjustMatrix[1] == 0); in DrawDeviceText() 656 ASSERT(charpos.m_AdjustMatrix[2] == 0); in DrawDeviceText() 657 ASSERT(charpos.m_AdjustMatrix[3] == 0); in DrawDeviceText()
|
/external/pdfium/xfa/fgas/layout/ |
D | cfx_rtfbreak.cpp | 801 current_char_pos.m_AdjustMatrix[0] = -1; in GetDisplayPos() 802 current_char_pos.m_AdjustMatrix[1] = 0; in GetDisplayPos() 803 current_char_pos.m_AdjustMatrix[2] = 0; in GetDisplayPos() 804 current_char_pos.m_AdjustMatrix[3] = 1; in GetDisplayPos() 809 current_char_pos.m_AdjustMatrix[0] = in GetDisplayPos() 810 current_char_pos.m_AdjustMatrix[0] * iHorScale / 100.0f; in GetDisplayPos() 811 current_char_pos.m_AdjustMatrix[1] = in GetDisplayPos() 812 current_char_pos.m_AdjustMatrix[1] * iHorScale / 100.0f; in GetDisplayPos() 813 current_char_pos.m_AdjustMatrix[2] = in GetDisplayPos() 814 current_char_pos.m_AdjustMatrix[2] * iVerScale / 100.0f; in GetDisplayPos() [all …]
|
D | cfx_txtbreak.cpp | 889 pCharPos->m_AdjustMatrix[0] = -1; in GetDisplayPos() 890 pCharPos->m_AdjustMatrix[1] = 0; in GetDisplayPos() 891 pCharPos->m_AdjustMatrix[2] = 0; in GetDisplayPos() 892 pCharPos->m_AdjustMatrix[3] = 1; in GetDisplayPos() 895 pCharPos->m_AdjustMatrix[0] = in GetDisplayPos() 896 pCharPos->m_AdjustMatrix[0] * iHorScale / 100.0f; in GetDisplayPos() 897 pCharPos->m_AdjustMatrix[1] = in GetDisplayPos() 898 pCharPos->m_AdjustMatrix[1] * iHorScale / 100.0f; in GetDisplayPos() 899 pCharPos->m_AdjustMatrix[2] = in GetDisplayPos() 900 pCharPos->m_AdjustMatrix[2] * iVerScale / 100.0f; in GetDisplayPos() [all …]
|
/external/pdfium/core/fxge/skia/ |
D | fx_skia_device.cpp | 841 bool upright = 0 == cp.m_AdjustMatrix[1] && 0 == cp.m_AdjustMatrix[2]; in HasRSX() 842 if (cp.m_AdjustMatrix[0] != cp.m_AdjustMatrix[3]) { in HasRSX() 843 if (upright && 1 == cp.m_AdjustMatrix[3]) { in HasRSX() 845 scaleX = cp.m_AdjustMatrix[0]; in HasRSX() 846 else if (scaleX != cp.m_AdjustMatrix[0]) in HasRSX() 851 } else if (cp.m_AdjustMatrix[1] != -cp.m_AdjustMatrix[2]) { in HasRSX() 940 rsxform->fSCos = cp.m_AdjustMatrix[0]; in DrawText() 941 rsxform->fSSin = cp.m_AdjustMatrix[1]; in DrawText() 942 rsxform->fTx = cp.m_AdjustMatrix[0] * positions[index].fX; in DrawText() 943 rsxform->fTy = cp.m_AdjustMatrix[1] * positions[index].fY; in DrawText() [all …]
|
/external/pdfium/core/fxge/ |
D | text_char_pos.h | 28 float m_AdjustMatrix[4]; variable
|
D | cfx_renderdevice.cpp | 932 charpos.m_AdjustMatrix[0], charpos.m_AdjustMatrix[1], in DrawNormalText() 933 charpos.m_AdjustMatrix[2], charpos.m_AdjustMatrix[3], 0, 0); in DrawNormalText() 1058 matrix = CFX_Matrix(charpos.m_AdjustMatrix[0], charpos.m_AdjustMatrix[1], in DrawTextPath() 1059 charpos.m_AdjustMatrix[2], charpos.m_AdjustMatrix[3], in DrawTextPath()
|
/external/pdfium/xfa/fde/ |
D | cfde_textout.cpp | 54 pos.m_AdjustMatrix[2] += mc * pos.m_AdjustMatrix[0]; in DrawString() 55 pos.m_AdjustMatrix[3] += mc * pos.m_AdjustMatrix[1]; in DrawString()
|