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

/openjdk9/jdk/src/java.desktop/share/classes/sun/font/
H A DGlyphLayout.java543 public int[] _glyphs; field in class:GlyphLayout.GVData
553 if (_glyphs == null || _glyphs.length < size) {
557 _glyphs = new int[size];
564 grow(_glyphs.length / 4); // always grows because min length is 20
568 int size = _glyphs.length + delta;
570 System.arraycopy(_glyphs, 0, nglyphs, 0, _count);
571 _glyphs = nglyphs;
615 System.arraycopy(_glyphs, 0, glyphs, 0, _count);

Completed in 86 milliseconds