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

  /external/chromium_org/ui/gfx/
font_list.h 19 // FontList represents a list of fonts and provides metrics which are common
20 // in the fonts. FontList is copyable and it's quite cheap to copy.
31 class GFX_EXPORT FontList {
35 FontList();
38 FontList(const FontList& other);
42 explicit FontList(const std::string& font_description_string);
45 FontList(const std::vector<std::string>& font_names,
51 explicit FontList(const std::vector<Font>& fonts);
54 explicit FontList(const Font& font)
    [all...]
font_list.cc 26 FontList::FontList() : impl_(GetDefaultImpl()) {}
28 FontList::FontList(const FontList& other) : impl_(other.impl_) {}
30 FontList::FontList(const std::string& font_description_string)
33 FontList::FontList(const std::vector<std::string>& font_names,
38 FontList::FontList(const std::vector<Font>& fonts
    [all...]

Completed in 55 milliseconds