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

/frameworks/minikin/include/minikin/
H A DFontFamily.h33 // FontStyle represents all style information needed to select an actual font
36 class FontStyle { class in namespace:android
38 FontStyle() : FontStyle(0 /* variant */, 4 /* weight */, false /* italic */) {} function in class:android::FontStyle
39 FontStyle(int weight, bool italic) : FontStyle(0 /* variant */, weight, italic) {} function in class:android::FontStyle
40 FontStyle(uint32_t langListId) function in class:android::FontStyle
41 : FontStyle(langListId, 0 /* variant */, 4 /* weight */, false /* italic */) {}
43 FontStyle(int variant, int weight, bool italic);
44 FontStyle(uint32_
[all...]
/frameworks/minikin/libs/minikin/
H A DFontFamily.cpp43 FontStyle::FontStyle(int variant, int weight, bool italic) function in class:android::FontStyle
44 : FontStyle(FontLanguageListCache::kEmptyListId, variant, weight, italic) {
47 FontStyle::FontStyle(uint32_t languageListId, int variant, int weight, bool italic) function in class:android::FontStyle
51 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) {
89 FontStyle style(weight, italic);
98 void FontFamily::addFont(MinikinFont* typeface, FontStyle styl
[all...]

Completed in 253 milliseconds