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

/openjdk7/jdk/src/share/classes/sun/font/
H A DGlyphLayout.java537 public int[] _glyphs; field in class:GlyphLayout.GVData
547 if (_glyphs == null || _glyphs.length < size) {
551 _glyphs = new int[size];
558 grow(_glyphs.length / 4); // always grows because min length is 20
562 int size = _glyphs.length + delta;
564 System.arraycopy(_glyphs, 0, nglyphs, 0, _count);
565 _glyphs = nglyphs;
609 System.arraycopy(_glyphs, 0, glyphs, 0, _count);

Completed in 30 milliseconds