Lines Matching refs:min
92 int count = std::min(fm->countFamilies(), MAX_FAMILIES);
230 SkRect min = SkRect::MakeLTRB(SK_ScalarInfinity, SK_ScalarInfinity,
238 if (cur.fLeft < min.fLeft ) { min.fLeft = cur.fLeft; left = i; }
239 if (cur.fTop < min.fTop ) { min.fTop = cur.fTop ; top = i; }
240 if (min.fRight < cur.fRight ) { min.fRight = cur.fRight; right = i; }
241 if (min.fBottom < cur.fBottom) { min.fBottom = cur.fBottom; bottom = i; }
247 SkRect drawBounds = min;
261 canvas->drawRect(min, boundsPaint);
271 SkRect underline{ min.fLeft, fm.fUnderlinePosition,
272 min.fRight, fm.fUnderlinePosition + fm.fUnderlineThickness };
279 SkRect strikeout{ min.fLeft, fm.fStrikeoutPosition - fm.fStrikeoutThickness,
280 min.fRight, fm.fStrikeoutPosition };
289 {left, {min.left(), min.centerY()}, 270},
290 {right, {min.right(), min.centerY()}, 90},
291 {top, {min.centerX(), min.top() }, 0},
292 {bottom, {min.centerX(), min.bottom() }, 180},
302 canvas->drawString(name, min.fLeft, min.fBottom, labelFont, SkPaint());
339 int count = std::min(fm->countFamilies(), 32);