Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/awt/font/
DNumericShaper.java1134 int ctxKey = getKeyFromMask(context); in shape() local
1136 shapeContextually(text, start, count, ctxKey); in shape()
1138 shapeContextually(text, start, count, Range.values()[ctxKey]); in shape()
1268 private synchronized void shapeContextually(char[] text, int start, int count, int ctxKey) { in shapeContextually() argument
1271 if ((mask & (1<<ctxKey)) == 0) { in shapeContextually()
1272 ctxKey = EUROPEAN_KEY; in shapeContextually()
1274 int lastkey = ctxKey; in shapeContextually()
1276 int base = bases[ctxKey]; in shapeContextually()
1277 char minDigit = ctxKey == ETHIOPIC_KEY ? '1' : '0'; // Ethiopic doesn't use decimal zero in shapeContextually()
1291 ctxKey = newkey; in shapeContextually()
[all …]