Searched refs:style2 (Results 1 – 1 of 1) sorted by relevance
122 static int computeMatch(FontStyle style1, FontStyle style2) { in computeMatch() argument123 if (style1 == style2) return 0; in computeMatch()124 int score = abs(style1.getWeight() - style2.getWeight()); in computeMatch()125 if (style1.getItalic() != style2.getItalic()) { in computeMatch()