Searched refs:numGlyphs (Results 1 - 25 of 37) sorted by relevance

12

/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-ot-maxp-table.hh48 return numGlyphs;
63 USHORT numGlyphs; /* The number of glyphs in the font. */ member in struct:OT::maxp
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/
H A Dglyphblitting.h38 int numGlyphs; member in struct:__anon875
/openjdk10/jdk/src/java.desktop/unix/classes/sun/font/
H A DNativeGlyphMapper.java49 int numGlyphs; field in class:NativeGlyphMapper
54 numGlyphs = f.getNumGlyphs();
59 return numGlyphs;
H A DNativeStrike.java38 int numGlyphs; field in class:NativeStrike
105 numGlyphs = 0;
117 numGlyphs = 0;
125 numGlyphs = nativeFont.getMapper().getNumGlyphs();
147 if (glyphLenArray < numGlyphs) {
148 glyphLenArray = numGlyphs;
165 if (glyphLenArray < numGlyphs) {
166 glyphLenArray = numGlyphs;
184 int numGlyphs = nativeFont.getMapper().getNumGlyphs();
H A DNativeFont.java61 private int numGlyphs = -1; field in class:NativeFont
302 int[] glyphs, int numGlyphs,
310 if (numGlyphs == -1) {
312 numGlyphs = countGlyphs(bytes, 8);
314 return numGlyphs;
301 getGlyphVectorOutline(long pScalerContext, int[] glyphs, int numGlyphs, float x, float y) argument
/openjdk10/jdk/src/java.desktop/macosx/classes/sun/font/
H A DCCompositeGlyphMapper.java71 int numGlyphs = 0;
78 numGlyphs += mapper.getNumGlyphs();
80 return numGlyphs;
H A DNativeFont.java83 int[] glyphs, int numGlyphs,
82 getGlyphVectorOutline(long pScalerContext, int[] glyphs, int numGlyphs, float x, float y) argument
H A DCCharToGlyphMapper.java35 int numGlyphs = -1; field in class:CCharToGlyphMapper
43 if (numGlyphs == -1) {
44 numGlyphs = countGlyphs(fFont.getNativeFontPtr());
46 return numGlyphs;
/openjdk10/jdk/test/java/awt/FontClass/SurrogateTest/
H A DSuppCharTest.java69 int numGlyphs = gv.getNumGlyphs();
70 int[] codes = gv.getGlyphCodes(0, numGlyphs, null);
72 for (int i=0; i<numGlyphs;i++) {
/openjdk10/jdk/src/java.desktop/unix/native/libfontmanager/
H A DX11TextRenderer.c72 &bounds, gbv->glyphs, gbv->numGlyphs);
H A DX11FontScaler.c72 context->numGlyphs = 0;
103 /* numGlyphs is an estimate : X11 doesn't provide a quick way to
111 context->numGlyphs = context->maxGlyph - context->minGlyph + 1;
212 int numGlyphs = context->numGlyphs; local
215 return numGlyphs;
/openjdk10/jdk/src/java.desktop/share/classes/sun/print/
H A DPathGraphics.java714 int numGlyphs = g.getNumGlyphs();
715 int[] glyphCodes = g.getGlyphCodes(0, numGlyphs, null);
731 for (int i=0; i<numGlyphs;i++) {
754 char[] chars = new char[numGlyphs];
756 for (int i=0; i<numGlyphs; i++) {
793 for (int i=0; i<numGlyphs; i++) {
813 if (gv2.getNumGlyphs() != numGlyphs) {
816 int[] glyphCodes2 = gv2.getGlyphCodes(0, numGlyphs, null);
820 for (int i=0; i<numGlyphs; i++) {
848 String str = new String(chars, 0, numGlyphs);
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/font/
H A DExtendedTextSourceLabel.java636 int numGlyphs = gv.getNumGlyphs();
637 if (numGlyphs == 0) {
640 int[] indices = gv.getGlyphCharIndices(0, numGlyphs, null);
644 System.err.println("number of glyphs: " + numGlyphs);
647 for (int i = 0; i < numGlyphs; ++i) {
662 int gxlimit = numGlyphs; // limit of gx, when we reach this we're done
668 minIndex = indices[numGlyphs - 1];
672 gx = numGlyphs - 1;
938 int numGlyphs = gv.getNumGlyphs();
940 int maxGlyph = numGlyphs;
[all...]
H A DFreetypeFontScaler.java152 long pScalerContext, int[] glyphs, int numGlyphs,
159 numGlyphs,
163 .getNullScaler().getGlyphVectorOutline(0L, glyphs, numGlyphs, x, y);
242 int[] glyphs, int numGlyphs, float x, float y);
151 getGlyphVectorOutline( long pScalerContext, int[] glyphs, int numGlyphs, float x, float y) argument
240 getGlyphVectorOutlineNative(Font2D font, long pScalerContext, long pScaler, int[] glyphs, int numGlyphs, float x, float y) argument
H A DTrueTypeGlyphMapper.java45 int numGlyphs; field in class:TrueTypeGlyphMapper
60 numGlyphs = buffer.getChar(4); // offset 4 bytes in MAXP table.
72 return numGlyphs;
78 if (glyphCode < numGlyphs ||
H A DNullFontScaler.java63 int numGlyphs, float x, float y) {
62 getGlyphVectorOutline(long pScalerContext, int[] glyphs, int numGlyphs, float x, float y) argument
H A DPhysicalFont.java105 int[] glyphs, int numGlyphs,
104 getGlyphVectorOutline(long pScalerContext, int[] glyphs, int numGlyphs, float x, float y) argument
H A DCompositeFont.java54 int numGlyphs = 0; field in class:CompositeFont
448 if (numGlyphs == 0) {
449 numGlyphs = getMapper().getNumGlyphs();
451 return numGlyphs;
H A DFileFont.java234 GeneralPath getGlyphVectorOutline(long pScalerContext, int[] glyphs, int numGlyphs, float x, float y) { argument
236 return getScaler().getGlyphVectorOutline(pScalerContext, glyphs, numGlyphs, x, y);
239 return getGlyphVectorOutline(pScalerContext, glyphs, numGlyphs, x, y);
H A DCompositeGlyphMapper.java137 int numGlyphs = 0;
153 numGlyphs += mapper.getNumGlyphs();
155 return numGlyphs;
H A DFileFontStrike.java188 int numGlyphs = mapper.getNumGlyphs();
202 (numGlyphs > SEGSIZE << 3) ||
203 ((numGlyphs > SEGSIZE << 1) &&
296 horizontalAdvances = new float[numGlyphs];
298 for (int i=0; i<numGlyphs; i++) {
302 int numSegments = (numGlyphs + SEGSIZE-1)/SEGSIZE;
574 int numGlyphs = mapper.getNumGlyphs();
577 int numSegments = (numGlyphs + SEGSIZE-1)/SEGSIZE;
590 longGlyphImages = new long[numGlyphs];
594 intGlyphImages = new int[numGlyphs];
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/opengl/
H A DOGLTextRenderer.java42 protected native void drawGlyphList(int numGlyphs, boolean usePositions, argument
/openjdk10/jdk/src/java.desktop/windows/classes/sun/font/
H A DNativeFont.java83 int[] glyphs, int numGlyphs,
82 getGlyphVectorOutline(long pScalerContext, int[] glyphs, int numGlyphs, float x, float y) argument
/openjdk10/jdk/src/java.desktop/windows/classes/sun/java2d/d3d/
H A DD3DTextRenderer.java42 protected native void drawGlyphList(int numGlyphs, boolean usePositions, argument
/openjdk10/jdk/src/java.desktop/unix/native/common/font/
H A DX11FontScaler.h61 int numGlyphs; member in struct:NativeScalerContext

Completed in 155 milliseconds

12