Home | History | Annotate | Download | only in res

Lines Matching refs:fm

324                                  Paint.FontMetricsInt fm) {
326 chooseHeight(text, start, end, spanstartv, v, fm, null);
331 Paint.FontMetricsInt fm, TextPaint paint) {
337 if (fm.bottom - fm.top < size) {
338 fm.top = fm.bottom - size;
339 fm.ascent = fm.ascent - size;
357 int need = (int) Math.ceil(-fm.top * sProportion);
359 if (size - fm.descent >= need) {
364 fm.top = fm.bottom - size;
365 fm.ascent = fm.descent - size;
372 fm.top = fm.ascent = -need;
373 fm.bottom = fm.descent = fm.top + size;
379 fm.top = fm.ascent = -size;
380 fm.bottom = fm.descent = 0;