Lines Matching refs:StandardGlyphVector

136 public class StandardGlyphVector extends GlyphVector {
162 public StandardGlyphVector(Font font, String str, FontRenderContext frc) {
166 public StandardGlyphVector(Font font, char[] text, FontRenderContext frc) {
170 public StandardGlyphVector(Font font, char[] text, int start, int count,
184 public StandardGlyphVector(Font font, FontRenderContext frc, int[] glyphs, float[] positions,
233 public StandardGlyphVector(Font font, CharacterIterator iter, FontRenderContext frc) {
244 public StandardGlyphVector(Font font, int[] glyphs, FontRenderContext frc) {
266 public static StandardGlyphVector getStandardGV(GlyphVector gv,
277 return new StandardGlyphVector(gv, frc);
280 if (gv instanceof StandardGlyphVector) {
281 return (StandardGlyphVector)gv;
283 return new StandardGlyphVector(gv, gv.getFontRenderContext());
639 StandardGlyphVector other = (StandardGlyphVector)rhs;
713 public StandardGlyphVector copy() {
714 return (StandardGlyphVector)clone();
725 StandardGlyphVector result = (StandardGlyphVector)super.clone();
746 // StandardGlyphVector new public methods
897 // StandardGlyphVector package private methods
952 // StandardGlyphVector private methods
1032 * Constructs a StandardGlyphVector from a generic glyph vector.
1036 private StandardGlyphVector(GlyphVector gv, FontRenderContext frc) {
1043 if (gv instanceof StandardGlyphVector) {
1118 // !!! need to support creating a StandardGlyphVector from a TextMeasurer's info...
1379 StandardGlyphVector sgv; // reference back to glyph vector - yuck
1386 GlyphTransformInfo(StandardGlyphVector sgv) {
1391 GlyphTransformInfo(StandardGlyphVector sgv, GlyphTransformInfo rhs) {
1695 StandardGlyphVector sgv;
1700 static GlyphStrike create(StandardGlyphVector sgv, AffineTransform dtx, AffineTransform gtx) {
1749 private GlyphStrike(StandardGlyphVector sgv, FontStrike strike, float dx, float dy) {