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

/external/chromium_org/ui/gfx/
H A Dfont_list.cc26 FontList::FontList() : impl_(GetDefaultImpl()) {} function in class:gfx::FontList
28 FontList::FontList(const FontList& other) : impl_(other.impl_) {} function in class:gfx::FontList
30 FontList::FontList(const std::string& font_description_string) function in class:gfx::FontList
33 FontList::FontList(const std::vector<std::string>& font_names, function in class:gfx::FontList
38 FontList function in class:gfx::FontList
41 FontList::FontList(const Font& font) : impl_(new FontListImpl(font)) {} function in class:gfx::FontList
130 FontList::FontList(FontListImpl* impl) : impl_(impl) {} function in class:gfx::FontList
[all...]
H A Dfont_list.h19 // 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 { class in namespace:gfx
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(cons
[all...]

Completed in 1448 milliseconds