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

/openjdk7/jdk/src/share/classes/sun/font/
H A DFontDesignMetrics.java135 private transient float[] advCache; // transient since values could change across runtimes field in class:FontDesignMetrics
370 advCache = new float[256];
373 advCache[i] = UNKNOWN_WIDTH;
419 // Uses advCache to get character width
423 float w = advCache[ch];
426 advCache[ch] = w;
536 float w = advCache[ch];
538 w = advCache[ch] = handleCharWidth(ch);

Completed in 75 milliseconds