Searched refs:fontBBox (Results 1 - 3 of 3) sorted by relevance

/external/skia/src/pdf/
H A DSkPDFFont.cpp706 auto fontBBox = sk_make_sp<SkPDFArray>(); local
707 fontBBox->reserve(4);
708 fontBBox->appendInt(bbox.left());
709 fontBBox->appendInt(bbox.bottom());
710 fontBBox->appendInt(bbox.right());
711 fontBBox->appendInt(bbox.top());
712 font->insertObject("FontBBox", std::move(fontBBox));
/external/skqp/src/pdf/
H A DSkPDFFont.cpp706 auto fontBBox = sk_make_sp<SkPDFArray>(); local
707 fontBBox->reserve(4);
708 fontBBox->appendInt(bbox.left());
709 fontBBox->appendInt(bbox.bottom());
710 fontBBox->appendInt(bbox.right());
711 fontBBox->appendInt(bbox.top());
712 font->insertObject("FontBBox", std::move(fontBBox));
/external/pdfium/fpdfsdk/
H A Dfpdfedit_embeddertest.cpp57 CPDF_Array* fontBBox = font_desc->GetArrayFor("FontBBox"); local
58 ASSERT_TRUE(fontBBox);
59 EXPECT_EQ(4U, fontBBox->GetCount());
62 EXPECT_TRUE(fontBBox->GetIntegerAt(0) < fontBBox->GetIntegerAt(2));
63 EXPECT_TRUE(fontBBox->GetIntegerAt(1) < fontBBox->GetIntegerAt(3));

Completed in 375 milliseconds