Home
last modified time | relevance | path

Searched refs:minDigit (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/awt/font/
DNumericShaper.java1246 char minDigit = '0'; in shapeNonContextually() local
1249 minDigit += shapingRange.getNumericBase(); in shapeNonContextually()
1253 minDigit++; // Ethiopic doesn't use decimal zero in shapeNonContextually()
1258 if (c >= minDigit && c <= '\u0039') { in shapeNonContextually()
1277 char minDigit = ctxKey == ETHIOPIC_KEY ? '1' : '0'; // Ethiopic doesn't use decimal zero in shapeContextually() local
1282 if (c >= minDigit && c <= '\u0039') { in shapeContextually()
1306minDigit = ctxKey == ETHIOPIC_KEY ? '1' : '0'; // Ethiopic doesn't use decimal zero in shapeContextually()
1321 char minDigit = (char)('0' + ctxKey.getNumericBase()); in shapeContextually() local
1325 if (c >= minDigit && c <= '9') { in shapeContextually()
1334 minDigit = (char)('0' + ctxKey.getNumericBase()); in shapeContextually()