Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/awt/font/
DNumericShaper.java912 int cachedIndex = stCache; in isStrongDirectional() local
913 if (c < strongTable[cachedIndex]) { in isStrongDirectional()
914 cachedIndex = search(c, strongTable, 0, cachedIndex); in isStrongDirectional()
915 } else if (c >= strongTable[cachedIndex + 1]) { in isStrongDirectional()
916 cachedIndex = search(c, strongTable, cachedIndex + 1, in isStrongDirectional()
917 strongTable.length - cachedIndex - 1); in isStrongDirectional()
919 boolean val = (cachedIndex & 0x1) == 1; in isStrongDirectional()
920 stCache = cachedIndex; in isStrongDirectional()