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

  /external/chromium_org/ui/gfx/
font.cc 41 Font Font::Derive(int size_delta, int style) const {
font_list.cc 61 FontList FontList::Derive(int size_delta, int font_style) const {
62 return FontList(impl_->Derive(size_delta, font_style));
66 return Derive(size_delta, GetFontStyle());
70 return Derive(0, font_style);
font_list_impl.cc 123 FontListImpl* FontListImpl::Derive(int size_delta, int font_style) const {
124 // If there is a font vector, derive from that.
128 fonts[i] = fonts[i].Derive(size_delta, font_style);
132 // Otherwise, parse the font description string to derive from it.
212 fonts_.push_back(font.Derive(0, font_style_));

Completed in 421 milliseconds