Searched defs:gp (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/sun/java2d/DirectX/AccelPaintsTest/
H A DAccelPaintsTest.java77 GradientPaint gp = field in class:AccelPaintsTest
106 renderWithPaint(g2d, gp);
/openjdk7/jdk/src/share/classes/sun/font/
H A DLayoutPathImpl.java762 double cx, cy; // last point in gp
763 GeneralPath gp; // path built for this segment field in class:LayoutPathImpl.SegmentPath.Segment
777 this.gp = new GeneralPath();
788 gp.closePath();
810 gp.moveTo((float)sx, (float)sy);
813 gp.lineTo((float)sx, (float)sy);
817 gp.lineTo((float)lx, (float)ly);
920 GeneralPath gp = new GeneralPath();
922 gp.append(seg.gp, fals
[all...]
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java944 GeneralPath gp = new GeneralPath();
1001 gp.moveTo(coords[0], coords[1]);
1004 gp.lineTo(coords[0], coords[1]);
1007 gp.quadTo(coords[0], coords[1],
1011 gp.curveTo(coords[0], coords[1],
1016 gp.closePath();
1027 return new Path(gp);
1036 private Path(GeneralPath gp) { argument
1037 this.path = gp;
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DGraphicsPrimitiveMgr.c440 GetNativePrim(JNIEnv *env, jobject gp) argument
444 pPrim = (NativePrimitive *) JNU_GetLongFieldAsPtr(env, gp, pNativePrimID);
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c1207 jobject gp = NULL; local
1216 return gp;
1222 return gp;
1237 gp = (*env)->NewObject(env,
1249 return gp;
1266 jobject gp = getGlyphGeneralPath(env, local
1273 if (gp == NULL) { /* can be legal */
1274 gp = (*env)->NewObject(env,
1278 return gp;
1342 jobject gp local
[all...]
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java439 GeneralPath gp = null;
442 gp = (GeneralPath) sg2d.usrClip;
444 gp = new GeneralPath(sg2d.usrClip);
447 int shapeLength = getPathLength(gp);
457 int windingRule = getPathCoordinates(gp, clipCoordinatesArray, clipTypesArray);
811 int getPathLength(GeneralPath gp) { argument
814 PathIterator pi = gp.getPathIterator(null);
823 int getPathCoordinates(GeneralPath gp, FloatBuffer coordinates, IntBuffer types) { argument
832 PathIterator pi = gp.getPathIterator(null);
985 public void drawfillShape(CRenderer renderer, SunGraphics2D sg2d, GeneralPath gp, boolea argument
[all...]

Completed in 49 milliseconds