HomeSort by relevance Sort by last modified time
    Searched defs:text_matrix (Results 1 - 4 of 4) sorted by null

  /external/pdfium/core/src/fxge/apple/
fx_quartz_device.cpp 833 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);
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 553 CFX_AffineMatrix text_matrix; local
554 GetTextMatrix(&text_matrix);
555 text_matrix.Concat(matrix);
557 pTextMatrix[0] = text_matrix.GetA();
558 pTextMatrix[1] = text_matrix.GetC();
559 pTextMatrix[2] = text_matrix.GetB();
560 pTextMatrix[3] = text_matrix.GetD();
561 m_PosX = text_matrix.GetE();
562 m_PosY = text_matrix.GetF();
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 132 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);
266 text_matrix.ConcatInverse(ctm);
285 &text_matrix, pDeviceMatrix, textobj->m_GraphState, fill_argb, stroke_argb, pClippingPath, flag);
287 text_matrix.Concat(*pObj2Device)
370 CFX_AffineMatrix text_matrix; local
    [all...]
fpdf_render.cpp 832 CFX_AffineMatrix text_matrix; local
833 textobj->GetTextMatrix(&text_matrix);
836 &text_matrix, &new_matrix, textobj->m_GraphState, (FX_ARGB) - 1, 0, NULL);
    [all...]

Completed in 241 milliseconds