Searched refs:getGlyphAdvance (Results 1 - 25 of 27) sorted by relevance

12

/openjdk9/jdk/src/java.desktop/unix/classes/sun/font/
H A DDelegateStrike.java87 float getGlyphAdvance(int glyphCode) { method in class:DelegateStrike
88 return delegateStrike.getGlyphAdvance(glyphCode);
99 return delegateStrike.getGlyphAdvance(cp);
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);
H A DNativeFont.java278 native float getGlyphAdvance(long pContext, int glyphCode); method in class:NativeFont
/openjdk9/jdk/src/java.desktop/macosx/classes/sun/font/
H A DNativeStrike.java71 float getGlyphAdvance(int glyphCode) { method in class:NativeStrike
H A DNativeFont.java99 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:NativeFont
H A DCStrike.java158 float getGlyphAdvance(final int glyphCode) { method in class:CStrike
164 return getGlyphAdvance(nativeFont.getMapper().charToGlyph(cp));
174 return new Point2D.Float(getGlyphAdvance(glyphCode), 0.0f);
H A DCFont.java51 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:CFont
/openjdk9/jdk/src/java.desktop/share/classes/sun/font/
H A DFontStrike.java67 abstract float getGlyphAdvance(int glyphCode); method in class:FontStrike
H A DCompositeStrike.java147 float getGlyphAdvance(int glyphCode) { method in class:CompositeStrike
149 return strike.getGlyphAdvance(glyphCode & SLOTMASK);
160 return getGlyphAdvance(compFont.getMapper().charToGlyph(cp));
H A DNullFontScaler.java43 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:NullFontScaler
H A DPhysicalFont.java87 abstract float getGlyphAdvance(long pScalerContext, int glyphCode); method in class:PhysicalFont
H A DPhysicalStrike.java110 return getGlyphAdvance(physicalFont.getMapper().charToGlyph(cp));
H A DFileFont.java189 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:FileFont
191 return getScaler().getGlyphAdvance(pScalerContext, glyphCode);
194 return getGlyphAdvance(pScalerContext, glyphCode);
H A DFontScaler.java165 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);
601 float getGlyphAdvance(int glyphCode) { method in class:FileFontStrike
602 return getGlyphAdvance(glyphCode, true);
610 private float getGlyphAdvance(int glyphCode, boolean getUserAdv) { method in class:FileFontStrike
621 * getGlyphAdvance take its course, and potentially caching in
700 advance = fileFont.getGlyphAdvance(pScalerContext, glyphCode);
721 return getGlyphAdvance(mapper.charToGlyph(cp));
/openjdk9/jdk/src/java.desktop/windows/classes/sun/font/
H A DNativeStrike.java71 float getGlyphAdvance(int glyphCode) { method in class:NativeStrike
H A DNativeFont.java99 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:NativeFont
/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DMarkToBasePosnSubtables.cpp108 fontInstance->getGlyphAdvance(markGlyph, pixels);
125 fontInstance->getGlyphAdvance(baseGlyph, pixels);
133 fontInstance->getGlyphAdvance(otherMark, px); // get advance, in case it's non-zero
H A DMarkToMarkPosnSubtables.cpp110 fontInstance->getGlyphAdvance(markGlyph, pixels);
125 fontInstance->getGlyphAdvance(mark2Glyph, pixels);
H A DGlyphPositionAdjustments.cpp145 fontInstance->getGlyphAdvance(glyphID, pixels);
152 fontInstance->getGlyphAdvance(lastExitGlyphID, pixels);
H A DMarkToLigaturePosnSubtables.cpp119 fontInstance->getGlyphAdvance(markGlyph, pixels);
132 fontInstance->getGlyphAdvance(ligatureGlyph, pixels);
H A DLEFontInstance.h311 virtual void getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const = 0;
/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/
H A DFontInstanceAdapter.h118 virtual void getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const;
H A DFontInstanceAdapter.cpp190 void FontInstanceAdapter::getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const function in class:FontInstanceAdapter

Completed in 285 milliseconds

12