/openjdk7/jdk/src/share/classes/java/awt/geom/ |
H A D | GeneralPath.java | 110 int numTypes, 118 this.numTypes = numTypes; 108 GeneralPath(int windingRule, byte[] pointTypes, int numTypes, float[] pointCoords, int numCoords) argument
|
H A D | Path2D.java | 98 transient int numTypes; field in class:Path2D 226 this.numTypes = p2d.numTypes; 279 if (needMove && numTypes == 0) { 284 if (numTypes >= size) { 309 if (numTypes > 0 && pointTypes[numTypes - 1] == SEG_MOVETO) { 314 pointTypes[numTypes++] = SEG_MOVETO; 334 if (numTypes > 0 && pointTypes[numTypes [all...] |
/openjdk7/jdk/src/share/native/sun/java2d/loops/ |
H A D | DrawPath.c | 68 jint numTypes; local 99 numTypes = (*env)->GetIntField(env, p2df, path2DNumTypesID); 100 if ((*env)->GetArrayLength(env, typesArray) < numTypes) { 161 coords, maxCoords, types, numTypes,
|
H A D | FillPath.c | 56 jint numTypes; local 88 numTypes = (*env)->GetIntField(env, p2df, path2DNumTypesID); 90 if ((*env)->GetArrayLength(env, typesArray) < numTypes) { 151 maxCoords, types, numTypes,
|
H A D | ProcessPath.c | 1463 jbyte* types, jint numTypes) 1519 for (i = 0; i < numTypes; i++) { 2183 jbyte* types, jint numTypes, 2210 coords, maxCoords, types, numTypes); 2224 jbyte* types, jint numTypes, PHStroke stroke) 2246 types, numTypes); 1460 ProcessPath(ProcessHandler* hnd, jfloat transXf, jfloat transYf, jfloat* coords, jint maxCoords, jbyte* types, jint numTypes) argument 2180 doFillPath(DrawHandler* dhnd, jint transX, jint transY, jfloat* coords, jint maxCoords, jbyte* types, jint numTypes, PHStroke stroke, jint fillRule) argument 2220 doDrawPath(DrawHandler* dhnd, void (*pProcessEndSubPath)(ProcessHandler*), jint transX, jint transY, jfloat* coords, jint maxCoords, jbyte* types, jint numTypes, PHStroke stroke) argument
|
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/ |
H A D | X11Renderer.c | 578 jint numTypes; local 607 numTypes = (*env)->GetIntField(env, p2df, path2DNumTypesID); 608 if ((*env)->GetArrayLength(env, typesArray) < numTypes) { 635 types, numTypes, 643 types, numTypes,
|
/openjdk7/jdk/src/share/native/sun/font/ |
H A D | freetypeScaler.c | 1045 jint numTypes; member in struct:__anon799 1074 gpdata->numTypes = 0; 1080 if (gpdata->lenTypes - gpdata->numTypes < maxTypes) { 1116 gpdata->pointTypes[gpdata->numTypes++] = SEG_MOVETO; 1119 gpdata->pointTypes[gpdata->numTypes++] = current_type; 1131 gpdata->pointTypes[gpdata->numTypes++] = SEG_MOVETO; 1153 gpdata->pointTypes[gpdata->numTypes++] = SEG_QUADTO; 1162 gpdata->pointTypes[gpdata->numTypes++] = current_type; 1175 gpdata->pointTypes[gpdata->numTypes++] = SEG_CLOSE; 1197 gpdata->numTypes [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/ |
H A D | COFFFileParser.java | 2238 private int numTypes; field in class:COFFFileParser.COFFFileImpl.COFFHeaderImpl.DebugVC50Impl.DebugVC50TypeIteratorImpl 2245 DebugVC50TypeIteratorImpl(DebugVC50SSGlobalTypes parent, int base, int numTypes) { argument 2246 this(parent, base, numTypes, 0, base); 2249 private DebugVC50TypeIteratorImpl(DebugVC50SSGlobalTypes parent, int base, int numTypes, int curType, int offset) { argument 2252 this.numTypes = numTypes; 2261 return (typeIndex == numTypes); 2282 return numTypes; 2394 return new DebugVC50TypeIteratorImpl(parent, base, numTypes, index, offset); 2437 return new DebugVC50TypeIteratorImpl(parent, base, numTypes, inde [all...] |