Home | History | Annotate | Download | only in timer

Lines Matching refs:allDigits

108         public UnsignedTime(Paint paint, float spacingRatio, String allDigits) {
112 if (TextUtils.isEmpty(allDigits)) {
114 allDigits = "0123456789";
117 float widths[] = new float[allDigits.length()];
118 int ll = mPaint.getTextWidths(allDigits, widths);
127 mWidest = allDigits.substring(largest, largest + 1);
199 public Hundredths(Paint paint, float spacingRatio, final String allDigits) {
200 super(paint, spacingRatio, allDigits);
294 // allDigits will contain ten digits: "0123456789" in the default locale
295 final String allDigits = String.format("%010d", 123456789);
296 mBigSeconds = new UnsignedTime(mPaintBigThin, 0.f, allDigits);
299 mMedHundredths = new Hundredths(mPaintMed, HUNDREDTHS_SPACING, allDigits);