Searched defs:FontStyle (Results 1 - 2 of 2) sorted by relevance

/frameworks/minikin/include/minikin/
H A DFontFamily.h35 // FontStyle represents all style information needed to select an actual font
38 class FontStyle { class in namespace:minikin
40 FontStyle() : FontStyle(0 /* variant */, 4 /* weight */, false /* italic */) {} function in class:minikin::FontStyle
41 FontStyle(int weight, bool italic) : FontStyle(0 /* variant */, weight, italic) {} function in class:minikin::FontStyle
42 FontStyle(uint32_t langListId) // NOLINT(implicit) function in class:minikin::FontStyle
43 : FontStyle(langListId, 0 /* variant */, 4 /* weight */, false /* italic */) {}
45 FontStyle(int variant, int weight, bool italic);
46 FontStyle(uint32_
[all...]
/frameworks/minikin/libs/minikin/
H A DFontFamily.cpp43 FontStyle::FontStyle(int variant, int weight, bool italic) function in class:minikin::FontStyle
44 : FontStyle(FontLanguageListCache::kEmptyListId, variant, weight, italic) {
47 FontStyle::FontStyle(uint32_t languageListId, int variant, int weight, bool italic) function in class:minikin::FontStyle
51 android::hash_t FontStyle::hash() const {
58 uint32_t FontStyle::registerLanguageList(const std::string& languages) {
64 uint32_t FontStyle::pack(int variant, int weight, bool italic) {
68 Font::Font(const std::shared_ptr<MinikinFont>& typeface, FontStyle style)
72 Font::Font(std::shared_ptr<MinikinFont>&& typeface, FontStyle styl
[all...]

Completed in 2008 milliseconds