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

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DNumericShaper.java603 private static int[] strongTable = { field in class:NumericShaper
895 if (c < strongTable[cachedIndex]) {
896 cachedIndex = search(c, strongTable, 0, cachedIndex);
897 } else if (c >= strongTable[cachedIndex + 1]) {
898 cachedIndex = search(c, strongTable, cachedIndex + 1,
899 strongTable.length - cachedIndex - 1);

Completed in 1720 milliseconds