Searched defs:Font (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DFontListParser.java55 public static class Font { class in class:FontListParser
56 Font(String fontName, int ttcIndex, List<Axis> axes, int weight, boolean isItalic) { method in class:FontListParser.Font
77 public Family(String name, List<Font> fonts, String lang, String variant) {
85 public List<Font> fonts;
125 List<Font> fonts = new ArrayList<Font>();
142 private static Font readFont(XmlPullParser parser)
165 return new Font(fullFilename, index, axes, weight, isItalic);
/frameworks/base/libs/hwui/font/
H A DFont.h37 // Font
48 class Font { class in namespace:android::uirenderer
82 ~Font();
90 const Font::FontDescription& getDescription() const {
97 static Font* create(FontRenderer* state, const SkPaint* paint, const SkMatrix& matrix);
102 Font(FontRenderer* state, const Font::FontDescription& desc);
104 typedef void (Font::*RenderGlyph)(CachedGlyphInfo*, int, int, uint8_t*,
155 inline int strictly_order_type(const Font::FontDescription& lhs,
156 const Font
[all...]
H A DFont.cpp28 #include "Font.h"
38 // Font
41 Font::Font(FontRenderer* state, const Font::FontDescription& desc) : function in class:android::uirenderer::Font
44 Font::FontDescription::FontDescription(const SkPaint* paint, const SkMatrix& rasterMatrix)
50 mFlags |= Font::kFakeBold;
63 Font::~Font() {
69 hash_t Font
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DFont.java43 * <p>Font color and transparency are not part of the font object and you can freely modify
44 * them in the script to suit the user's rendering needs. Font colors work as a state machine.
47 public class Font extends BaseObj { class in inherits:BaseObj
151 Font(long id, RenderScript rs) { method in class:Font
160 static public Font createFromFile(RenderScript rs, Resources res, String path, float pointSize) {
168 Font rsFont = new Font(fontId, rs);
176 static public Font createFromFile(RenderScript rs, Resources res, File path, float pointSize) {
183 static public Font createFromAsset(RenderScript rs, Resources res, String path, float pointSize) {
192 Font rsFon
[all...]
/frameworks/minikin/include/minikin/
H A DFontFamily.h145 class Font { class in class:android::FontFamily
147 Font(MinikinFont* typeface, FontStyle style) : function in class:android::FontFamily::Font
154 std::vector<Font> mFonts;
/frameworks/rs/
H A DrsFont.cpp36 Font::Font(Context *rsc) : ObjectBase(rsc), mCachedGlyphs(NULL) { function in class:Font
42 bool Font::init(const char *name, float fontSize, uint32_t dpi, const void *data, uint32_t dataLen) {
78 void Font::preDestroy() const {
87 void Font::invalidateTextureCache() {
93 void Font::drawCachedGlyph(CachedGlyphInfo *glyph, int32_t x, int32_t y) {
113 void Font::drawCachedGlyph(CachedGlyphInfo* glyph, int32_t x, int32_t y,
139 void Font::measureCachedGlyph(CachedGlyphInfo *glyph, int32_t x, int32_t y, Rect *bounds) {
161 void Font::renderUTF(const char *text, uint32_t len, int32_t x, int32_t y,
169 if (mode == Font
[all...]
H A DrsFont.h44 class Font : public ObjectBase { class in namespace:android::renderscript
65 ~Font();
75 static Font * create(Context *rsc, const char *name, float fontSize, uint32_t dpi,
119 Font(Context *rsc);
146 ObjectBaseRef<Font> mDefault;
150 Font::RenderMode mode = Font::FRAMEBUFFER,
151 Font::Rect *bounds = nullptr,
154 void measureText(const char *text, uint32_t len, Font::Rect *bounds);
164 friend class Font;
[all...]
/frameworks/base/media/java/android/media/
H A DTimedText.java62 private static final int KEY_STRUCT_FONT_LIST = 9; // List<Font>
101 private List<Font> mFontList = null;
244 public static final class Font { class in class:TimedText
260 public Font(int id, String name) { method in class:TimedText.Font
592 * To parse and store the Font list
604 Font font = new Font(id, name);
607 mFontList = new ArrayList<Font>();
724 * List of CharPos, Karaoke, Font, Style, and HyperText, or 3) an instance of
/frameworks/base/core/java/android/text/
H A DHtml.java1162 start(text, new Font(face));
1167 Font font = getLast(text, Font.class);
1287 private static class Font { class in class:HtmlToSpannedConverter
1290 public Font(String face) { method in class:HtmlToSpannedConverter.Font

Completed in 358 milliseconds