Home | History | Annotate | Download | only in provider

Lines Matching defs:ITALIC

120          * should have this column populated with the int italic for the resulting font. This should
121 * be 0 for regular style and 1 for italic.
123 public static final String ITALIC = "font_italic";
195 * @param italic A boolean that indicates the font is italic style or not.
201 boolean italic, int resultCode) {
206 mItalic = italic;
239 * Returns whether this font is italic.
776 Columns.WEIGHT, Columns.ITALIC, Columns.RESULT_CODE },
788 final int italicColumnIndex = cursor.getColumnIndex(Columns.ITALIC);
806 boolean italic;
809 italic = cursor.getInt(italicColumnIndex) == 1;
812 italic = false;
816 result.add(new FontInfo(fileUri, ttcIndex, axes, weight, italic, resultCode));