/openjdk7/jdk/src/share/native/sun/font/layout/ |
H A D | MarkToBasePosnSubtables.cpp | 106 fontInstance->getGlyphAdvance(markGlyph, pixels); 121 fontInstance->getGlyphAdvance(baseGlyph, pixels); 129 fontInstance->getGlyphAdvance(otherMark, px); // get advance, in case it's non-zero
|
H A D | MarkToMarkPosnSubtables.cpp | 104 fontInstance->getGlyphAdvance(markGlyph, pixels); 117 fontInstance->getGlyphAdvance(mark2Glyph, pixels);
|
H A D | MarkToLigaturePosnSubtables.cpp | 110 fontInstance->getGlyphAdvance(markGlyph, pixels); 123 fontInstance->getGlyphAdvance(ligatureGlyph, pixels);
|
H A D | GlyphPositionAdjustments.cpp | 145 fontInstance->getGlyphAdvance(glyphID, pixels); 152 fontInstance->getGlyphAdvance(lastExitGlyphID, pixels);
|
H A D | LEFontInstance.h | 327 virtual void getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const = 0;
|
H A D | LayoutEngine.cpp | 407 fFontInstance->getGlyphAdvance(glyphStorage[i], advance);
|
/openjdk7/jdk/src/share/classes/sun/font/ |
H A D | FontStrike.java | 67 abstract float getGlyphAdvance(int glyphCode); method in class:FontStrike
|
H A D | CompositeStrike.java | 145 float getGlyphAdvance(int glyphCode) { method in class:CompositeStrike 147 return strike.getGlyphAdvance(glyphCode & SLOTMASK); 158 return getGlyphAdvance(compFont.getMapper().charToGlyph(cp));
|
H A D | NullFontScaler.java | 43 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:NullFontScaler
|
H A D | PhysicalFont.java | 87 abstract float getGlyphAdvance(long pScalerContext, int glyphCode); method in class:PhysicalFont
|
H A D | PhysicalStrike.java | 110 return getGlyphAdvance(physicalFont.getMapper().charToGlyph(cp));
|
H A D | FileFont.java | 186 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:FileFont 188 return getScaler().getGlyphAdvance(pScalerContext, glyphCode); 191 return getGlyphAdvance(pScalerContext, glyphCode);
|
H A D | FontScaler.java | 164 abstract float getGlyphAdvance(long pScalerContext, int glyphCode) method in class:FontScaler
|
H A D | FreetypeFontScaler.java | 85 synchronized float getGlyphAdvance(long pScalerContext, int glyphCode) method in class:FreetypeFontScaler 94 getGlyphAdvance(0L, glyphCode);
|
H A D | FileFontStrike.java | 349 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));
|
H A D | StandardGlyphVector.java | 209 if (strike.getGlyphAdvance(glyphs[n++]) != 0) { // might be an inadequate test
|
/openjdk7/jdk/src/windows/classes/sun/font/ |
H A D | NativeStrike.java | 71 float getGlyphAdvance(int glyphCode) { method in class:NativeStrike
|
H A D | NativeFont.java | 99 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:NativeFont
|
/openjdk7/jdk/src/solaris/classes/sun/font/ |
H A D | NativeStrike.java | 276 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);
|
H A D | NativeFont.java | 278 native float getGlyphAdvance(long pContext, int glyphCode); method in class:NativeFont
|
/openjdk7/jdk/src/macosx/classes/sun/font/ |
H A D | CFont.java | 50 float getGlyphAdvance(long pScalerContext, int glyphCode) { method in class:CFont
|
H A D | CStrike.java | 158 float getGlyphAdvance(int glyphCode) { method in class:CStrike
|
/openjdk7/jdk/src/share/native/sun/font/ |
H A D | FontInstanceAdapter.h | 119 virtual void getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const;
|
H A D | FontInstanceAdapter.cpp | 196 void FontInstanceAdapter::getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const function in class:FontInstanceAdapter
|