Searched defs:tempChars (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DArabicLayoutEngine.cpp181 LEUnicode *tempChars = LE_NEW_ARRAY(LEUnicode, tempGlyphCount); local
183 if (tempChars == NULL) {
189 tempChars[i] = (LEUnicode) LE_GET_GLYPH(tempGlyphStorage[i]);
194 ArabicOpenTypeLayoutEngine::mapCharsToGlyphs(tempChars, 0, tempGlyphCount, FALSE, TRUE, glyphStorage, success);
196 LE_DELETE_ARRAY(tempChars);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAbstractWriter.java87 private char[] tempChars; field in class:AbstractWriter
91 * tempChars. If tempChars were used it would mean write couldn't invoke
93 * tempChars.
491 if (tempChars == null) {
492 tempChars = new char[128];
494 tempChars[0] = ch;
495 write(tempChars, 0, 1);
510 if (tempChars == null || tempChars
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLWriter.java95 private char[] tempChars; field in class:HTMLWriter
1255 if (tempChars == null || tempChars.length < length) {
1256 tempChars = new char[length];
1258 string.getChars(0, length, tempChars, 0);
1259 super.output(tempChars, 0, length);

Completed in 91 milliseconds