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

  /external/pdfium/core/fpdfapi/font/
cpdf_font.cpp 201 m_FontBBox.left = pBBox->GetIntegerAt(0);
202 m_FontBBox.bottom = pBBox->GetIntegerAt(1);
203 m_FontBBox.right = pBBox->GetIntegerAt(2);
204 m_FontBBox.top = pBBox->GetIntegerAt(3);
229 if (m_FontBBox.top == 0 && m_FontBBox.bottom == 0 && m_FontBBox.left == 0 &&
230 m_FontBBox.right == 0) {
233 m_FontBBox.left = TT2PDF(FXFT_Get_Face_xMin(face), face);
234 m_FontBBox.bottom = TT2PDF(FXFT_Get_Face_yMin(face), face)
    [all...]
cpdf_type3font.cpp 55 m_FontBBox.left = (int32_t)(pBBox->GetNumberAt(0) * xscale * 1000);
56 m_FontBBox.bottom = (int32_t)(pBBox->GetNumberAt(1) * yscale * 1000);
57 m_FontBBox.right = (int32_t)(pBBox->GetNumberAt(2) * xscale * 1000);
58 m_FontBBox.top = (int32_t)(pBBox->GetNumberAt(3) * yscale * 1000);
cpdf_font.h 71 void GetFontBBox(FX_RECT& rect) const { rect = m_FontBBox; }
109 FX_RECT m_FontBBox;

Completed in 1943 milliseconds