Searched refs:fontId (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/rs/java/android/renderscript/ |
D | Font.java | 165 long fontId = rs.nFontCreateFromFile(path, pointSize, dpi); in createFromFile() local 167 if(fontId == 0) { in createFromFile() 170 Font rsFont = new Font(fontId, rs); in createFromFile() 190 long fontId = rs.nFontCreateFromAsset(mgr, path, pointSize, dpi); in createFromAsset() local 191 if(fontId == 0) { in createFromAsset() 194 Font rsFont = new Font(fontId, rs); in createFromAsset() 214 long fontId = 0; in createFromResource() local 217 fontId = rs.nFontCreateFromAssetStream(name, pointSize, dpi, asset); in createFromResource() 222 if(fontId == 0) { in createFromResource() 225 Font rsFont = new Font(fontId, rs); in createFromResource()
|
/frameworks/base/media/java/android/media/ |
D | TimedText.java | 226 public Style(int startChar, int endChar, int fontId, in Style() argument 231 this.fontID = fontId; in Style() 546 int fontId = -1; in readStyle() local 564 fontId = parcel.readInt(); in readStyle() 594 Style style = new Style(startChar, endChar, fontId, isBold, in readStyle()
|