Home | History | Annotate | Download | only in gfx

Lines Matching defs:derived

213   FontList derived = font_list.Derive(10, Font::ITALIC | Font::UNDERLINE);
214 EXPECT_EQ("Arial,Sans serif,Italic 18px", derived.GetFontDescriptionString());
215 EXPECT_EQ(Font::ITALIC | Font::UNDERLINE, derived.GetFontStyle());
219 derived.GetFonts();
220 EXPECT_EQ(Font::ITALIC | Font::UNDERLINE, derived.GetFontStyle());
229 FontList derived = font_list.Derive(5, Font::BOLD | Font::UNDERLINE);
230 const std::vector<Font>& derived_fonts = derived.GetFonts();
240 FontList derived = font_list.DeriveWithSizeDelta(-8);
242 derived.GetFontDescriptionString());
251 FontList derived = font_list.DeriveWithSizeDelta(-5);
252 const std::vector<Font>& derived_fonts = derived.GetFonts();