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

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DNumericShaper.java1116 int ctxKey = getKeyFromMask(context);
1118 shapeContextually(text, start, count, ctxKey);
1120 shapeContextually(text, start, count, Range.values()[ctxKey]);
1250 private synchronized void shapeContextually(char[] text, int start, int count, int ctxKey) { argument
1253 if ((mask & (1<<ctxKey)) == 0) {
1254 ctxKey = EUROPEAN_KEY;
1256 int lastkey = ctxKey;
1258 int base = bases[ctxKey];
1259 char minDigit = ctxKey == ETHIOPIC_KEY ? '1' : '0'; // Ethiopic doesn't use decimal zero
1273 ctxKey
1295 shapeContextually(char[] text, int start, int count, Range ctxKey) argument
[all...]

Completed in 592 milliseconds