Searched defs:getGlyphAdvance (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/font/
H A DPhysicalFont.java87 abstract float getGlyphAdvance(long pScalerContext, int glyphCode); method in class:PhysicalFont
H A DCompositeStrike.java145 float getGlyphAdvance(int glyphCode) { method in class:CompositeStrike
147 return strike.getGlyphAdvance(glyphCode & SLOTMASK);
158 return getGlyphAdvance(compFont.getMapper().charToGlyph(cp));
H A DFontStrike.java67 abstract float getGlyphAdvance(int glyphCode); method in class:FontStrike
H A DNullFontScaler.java43 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:NullFontScaler
H A DFileFont.java186 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:FileFont
188 return getScaler().getGlyphAdvance(pScalerContext, glyphCode);
191 return getGlyphAdvance(pScalerContext, glyphCode);
H A DFontScaler.java164 abstract float getGlyphAdvance(long pScalerContext, int glyphCode) method in class:FontScaler
H A DFreetypeFontScaler.java85 synchronized float getGlyphAdvance(long pScalerContext, int glyphCode) method in class:FreetypeFontScaler
94 getGlyphAdvance(0L, glyphCode);
H A DFileFontStrike.java349 float advance = getGlyphAdvance(glyphCode, false);
570 float getGlyphAdvance(int glyphCode) { method in class:FileFontStrike
571 return getGlyphAdvance(glyphCode, true);
579 private float getGlyphAdvance(int glyphCode, boolean getUserAdv) { method in class:FileFontStrike
590 * getGlyphAdvance take its course, and potentially caching in
669 advance = fileFont.getGlyphAdvance(pScalerContext, glyphCode);
690 return getGlyphAdvance(mapper.charToGlyph(cp));
/openjdk7/jdk/src/windows/classes/sun/font/
H A DNativeFont.java99 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:NativeFont
H A DNativeStrike.java71 float getGlyphAdvance(int glyphCode) { method in class:NativeStrike
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCFont.java50 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:CFont
H A DCStrike.java158 float getGlyphAdvance(int glyphCode) { method in class:CStrike
/openjdk7/jdk/src/share/native/sun/font/
H A DFontInstanceAdapter.cpp196 void FontInstanceAdapter::getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const function in class:FontInstanceAdapter
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DNativeFont.java278 native float getGlyphAdvance(long pContext, int glyphCode); method in class:NativeFont
H A DNativeStrike.java276 Point2D.Float pt = new Point2D.Float(getGlyphAdvance(glyphCode), 0f);
280 float getGlyphAdvance(int glyphCode) { method in class:NativeStrike
281 return nativeFont.getGlyphAdvance(pScalerContext, glyphCode);
352 float getGlyphAdvance(int glyphCode) { method in class:DelegateStrike
353 return delegateStrike.getGlyphAdvance(glyphCode);
364 return delegateStrike.getGlyphAdvance(cp);

Completed in 46 milliseconds