/openjdk7/jdk/src/share/classes/sun/font/ |
H A D | FontStrike.java | 74 getGlyphOutline(int glyphCode, float x, float y); method in class:FontStrike
|
H A D | NullFontScaler.java | 57 GeneralPath getGlyphOutline(long pScalerContext, int glyphCode, method in class:NullFontScaler
|
H A D | PhysicalFont.java | 101 abstract GeneralPath getGlyphOutline(long pScalerContext, int glyphCode, method in class:PhysicalFont
|
H A D | CompositeStrike.java | 166 GeneralPath getGlyphOutline(int glyphCode, float x, float y) { method in class:CompositeStrike 169 GeneralPath path = strike.getGlyphOutline(glyphCode & SLOTMASK, x, y);
|
H A D | FileFont.java | 222 GeneralPath getGlyphOutline(long pScalerContext, int glyphCode, float x, float y) { method in class:FileFont 224 return getScaler().getGlyphOutline(pScalerContext, glyphCode, x, y); 227 return getGlyphOutline(pScalerContext, glyphCode, x, y);
|
H A D | FontScaler.java | 188 abstract GeneralPath getGlyphOutline(long pScalerContext, int glyphCode, method in class:FontScaler
|
H A D | FreetypeFontScaler.java | 137 synchronized GeneralPath getGlyphOutline( method in class:FreetypeFontScaler 148 getGlyphOutline(0L, glyphCode, x,y);
|
H A D | StandardGlyphVector.java | 431 public Shape getGlyphOutline(int ix) { method in class:StandardGlyphVector 436 public Shape getGlyphOutline(int ix, float x, float y) { method in class:StandardGlyphVector 1793 GeneralPath gp = strike.getGlyphOutline(glyphID, 0, 0); 1817 gp = strike.getGlyphOutline(glyphID, x + dx, y + dy); 1819 gp = strike.getGlyphOutline(glyphID, 0, 0);
|
H A D | FileFontStrike.java | 907 GeneralPath getGlyphOutline(int glyphCode, float x, float y) { method in class:FileFontStrike 920 gp = fileFont.getGlyphOutline(pScalerContext, glyphCode, 0, 0);
|
/openjdk7/jdk/src/windows/classes/sun/font/ |
H A D | NativeStrike.java | 78 GeneralPath getGlyphOutline(int glyphCode, float x, float y) { method in class:NativeStrike
|
H A D | NativeFont.java | 76 public GeneralPath getGlyphOutline(long pScalerContext, method in class:NativeFont
|
/openjdk7/jdk/src/share/classes/java/awt/font/ |
H A D | GlyphVector.java | 315 public abstract Shape getGlyphOutline(int glyphIndex); method in class:GlyphVector 335 public Shape getGlyphOutline(int glyphIndex, float x, float y) { method in class:GlyphVector 336 Shape s = getGlyphOutline(glyphIndex);
|
/openjdk7/jdk/src/solaris/classes/sun/font/ |
H A D | NativeStrike.java | 288 GeneralPath getGlyphOutline(int glyphCode, float x, float y) { method in class:NativeStrike 371 GeneralPath getGlyphOutline(int glyphCode, float x, float y) { method in class:DelegateStrike 372 return delegateStrike.getGlyphOutline(glyphCode, x, y);
|
H A D | NativeFont.java | 285 public GeneralPath getGlyphOutline(long pScalerContext, method in class:NativeFont
|
/openjdk7/jdk/src/macosx/classes/sun/font/ |
H A D | CFont.java | 68 GeneralPath getGlyphOutline(long pScalerContext, int glyphCode, method in class:CFont
|
H A D | CStrike.java | 229 GeneralPath gp = getGlyphOutline(glyphCode, 0f, 0f); 266 GeneralPath getGlyphOutline(int glyphCode, float x, float y) { method in class:CStrike
|
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/ |
H A D | CTextPipe.java | 53 final Shape glyph = gv.getGlyphOutline(i, x, y); 67 final Shape glyph = gv.getGlyphOutline(i, (float)x, (float)y);
|
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/ |
H A D | TextMeasureTests.java | 383 s = gv.getGlyphOutline(i);
|