Searched refs:text_matrix (Results 1 - 4 of 4) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_text.cpp132 CFX_AffineMatrix image_matrix, text_matrix; local
134 text_matrix.Set(pMatrix->a, pMatrix->b, pMatrix->c, pMatrix->d, 0, 0);
135 image_matrix.Concat(text_matrix);
249 CFX_AffineMatrix text_matrix; local
250 textobj->GetTextMatrix(&text_matrix);
251 if(IsAvailableMatrix(text_matrix) == FALSE) {
256 DrawTextPathWithPattern(textobj, pObj2Device, pFont, font_size, &text_matrix, bFill, bStroke);
264 if (font_size * text_matrix.GetXUnit() * pObj2Device->GetXUnit() < 6) {
276 text_matrix.ConcatInverse(ctm);
297 &text_matrix, pDeviceMatri
382 CFX_AffineMatrix text_matrix; local
[all...]
H A Dfpdf_render.cpp866 CFX_AffineMatrix text_matrix; local
867 textobj->GetTextMatrix(&text_matrix);
870 &text_matrix, &new_matrix, textobj->m_GraphState, (FX_ARGB) - 1, 0, NULL);
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page.cpp559 CFX_AffineMatrix text_matrix; local
560 GetTextMatrix(&text_matrix);
561 text_matrix.Concat(matrix);
563 pTextMatrix[0] = text_matrix.GetA();
564 pTextMatrix[1] = text_matrix.GetC();
565 pTextMatrix[2] = text_matrix.GetB();
566 pTextMatrix[3] = text_matrix.GetD();
567 m_PosX = text_matrix.GetE();
568 m_PosY = text_matrix.GetF();
/external/pdfium/core/src/fxge/apple/
H A Dfx_quartz_device.cpp833 CFX_AffineMatrix text_matrix; local
835 text_matrix.Concat(*pObject2Device);
837 CGAffineTransform matrix_cg = CGAffineTransformMake(text_matrix.a,
838 text_matrix.b,
839 text_matrix.c,
840 text_matrix.d,
841 text_matrix.e,
842 text_matrix.f);

Completed in 84 milliseconds