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

12

/openjdk7/jdk/src/share/native/sun/font/
H A Dglyphblitting.h38 int numGlyphs; member in struct:__anon800
/openjdk7/jdk/src/solaris/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
/openjdk7/jdk/src/macosx/native/sun/font/
H A DCCharToGlyphMapper.m40 jint numGlyphs = 0;
45 numGlyphs = [awtFont->fFont numberOfGlyphs];
49 return numGlyphs;
/openjdk7/jdk/test/java/awt/FontClass/SurrogateTest/
H A DSuppCharTest.java68 int numGlyphs = gv.getNumGlyphs();
69 int[] codes = gv.getGlyphCodes(0, numGlyphs, null);
71 for (int i=0; i<numGlyphs;i++) {
/openjdk7/jdk/src/solaris/native/sun/font/
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;
H A DX11FontScaler.h61 int numGlyphs; member in struct:NativeScalerContext
/openjdk7/jdk/src/share/classes/sun/print/
H A DPathGraphics.java718 int numGlyphs = g.getNumGlyphs();
719 int[] glyphCodes = g.getGlyphCodes(0, numGlyphs, null);
735 for (int i=0; i<numGlyphs;i++) {
758 char[] chars = new char[numGlyphs];
760 for (int i=0; i<numGlyphs; i++) {
797 for (int i=0; i<numGlyphs; i++) {
817 if (gv2.getNumGlyphs() != numGlyphs) {
820 int[] glyphCodes2 = gv2.getGlyphCodes(0, numGlyphs, null);
824 for (int i=0; i<numGlyphs; i++) {
852 String str = new String(chars, 0, numGlyphs);
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DExtendedTextSourceLabel.java634 int numGlyphs = gv.getNumGlyphs();
635 if (numGlyphs == 0) {
638 int[] indices = gv.getGlyphCharIndices(0, numGlyphs, null);
642 System.err.println("number of glyphs: " + numGlyphs);
643 for (int i = 0; i < numGlyphs; ++i) {
658 int gxlimit = numGlyphs; // limit of gx, when we reach this we're done
664 minIndex = indices[numGlyphs - 1];
670 gx = numGlyphs - 1;
967 int numGlyphs = gv.getNumGlyphs();
969 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 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 DTrueTypeGlyphMapper.java48 int numGlyphs; field in class:TrueTypeGlyphMapper
62 numGlyphs = buffer.getChar(4); // offset 4 bytes in MAXP table.
75 return numGlyphs;
81 if (glyphCode < numGlyphs ||
H A DCompositeFont.java54 int numGlyphs = 0; field in class:CompositeFont
406 if (numGlyphs == 0) {
407 numGlyphs = getMapper().getNumGlyphs();
409 return numGlyphs;
H A DCompositeGlyphMapper.java137 int numGlyphs = 0;
153 numGlyphs += mapper.getNumGlyphs();
155 return numGlyphs;
H A DFileFont.java231 GeneralPath getGlyphVectorOutline(long pScalerContext, int[] glyphs, int numGlyphs, float x, float y) { argument
233 return getScaler().getGlyphVectorOutline(pScalerContext, glyphs, numGlyphs, x, y);
236 return getGlyphVectorOutline(pScalerContext, glyphs, numGlyphs, x, y);
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;
543 int numGlyphs = mapper.getNumGlyphs();
546 int numSegments = (numGlyphs + SEGSIZE-1)/SEGSIZE;
559 longGlyphImages = new long[numGlyphs];
563 intGlyphImages = new int[numGlyphs];
[all...]
H A DFontScaler.java193 int numGlyphs, float x, float y)
192 getGlyphVectorOutline(long pScalerContext, int[] glyphs, int numGlyphs, float x, float y) argument
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCCharToGlyphMapper.java35 int numGlyphs = -1; field in class:CCharToGlyphMapper
43 if (numGlyphs == -1) {
44 numGlyphs = countGlyphs(fFont.getNativeFontPtr());
46 return numGlyphs;
H A DCFont.java74 int[] glyphs, int numGlyphs,
73 getGlyphVectorOutline(long pScalerContext, int[] glyphs, int numGlyphs, float x, float y) argument
/openjdk7/jdk/src/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
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DTextRenderer.java42 protected native void drawGlyphList(int numGlyphs, boolean usePositions, argument
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLTextRenderer.java42 protected native void drawGlyphList(int numGlyphs, boolean usePositions, argument

Completed in 58 milliseconds

12