Searched refs:strongTable (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/awt/font/
H A DNumericShaper.java603 private static int[] strongTable = { field in class:NumericShaper
913 if (c < strongTable[cachedIndex]) {
914 cachedIndex = search(c, strongTable, 0, cachedIndex);
915 } else if (c >= strongTable[cachedIndex + 1]) {
916 cachedIndex = search(c, strongTable, cachedIndex + 1,
917 strongTable.length - cachedIndex - 1);

Completed in 101 milliseconds