Lines Matching defs:pScalerContext

168                 if (strike != null && strike.pScalerContext != 0L) {
169 scaler.invalidateScalerContext(strike.pScalerContext);
177 StrikeMetrics getFontMetrics(long pScalerContext) {
179 return getScaler().getFontMetrics(pScalerContext);
182 return getFontMetrics(pScalerContext);
186 float getGlyphAdvance(long pScalerContext, int glyphCode) {
188 return getScaler().getGlyphAdvance(pScalerContext, glyphCode);
191 return getGlyphAdvance(pScalerContext, glyphCode);
195 void getGlyphMetrics(long pScalerContext, int glyphCode, Point2D.Float metrics) {
197 getScaler().getGlyphMetrics(pScalerContext, glyphCode, metrics);
200 getGlyphMetrics(pScalerContext, glyphCode, metrics);
204 long getGlyphImage(long pScalerContext, int glyphCode) {
206 return getScaler().getGlyphImage(pScalerContext, glyphCode);
209 return getGlyphImage(pScalerContext, glyphCode);
213 Rectangle2D.Float getGlyphOutlineBounds(long pScalerContext, int glyphCode) {
215 return getScaler().getGlyphOutlineBounds(pScalerContext, glyphCode);
218 return getGlyphOutlineBounds(pScalerContext, glyphCode);
222 GeneralPath getGlyphOutline(long pScalerContext, int glyphCode, float x, float y) {
224 return getScaler().getGlyphOutline(pScalerContext, glyphCode, x, y);
227 return getGlyphOutline(pScalerContext, glyphCode, x, y);
231 GeneralPath getGlyphVectorOutline(long pScalerContext, int[] glyphs, int numGlyphs, float x, float y) {
233 return getScaler().getGlyphVectorOutline(pScalerContext, glyphs, numGlyphs, x, y);
236 return getGlyphVectorOutline(pScalerContext, glyphs, numGlyphs, x, y);