/openjdk7/jdk/src/share/classes/sun/reflect/generics/tree/ |
H A D | MethodTypeSignature.java | 37 TypeSignature[] pts, 41 parameterTypes = pts; 47 TypeSignature[] pts, 50 return new MethodTypeSignature(ftps, pts, rt, ets); 36 MethodTypeSignature(FormalTypeParameter[] ftps, TypeSignature[] pts, ReturnType rt, FieldTypeSignature[] ets) argument 46 make(FormalTypeParameter[] ftps, TypeSignature[] pts, ReturnType rt, FieldTypeSignature[] ets) argument
|
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/ |
H A D | Curve.java | 112 int infPoints(float[] pts, int off) { argument 120 return Helpers.quadraticRoots(a, b, c, pts, off); 126 private int perpendiculardfddf(float[] pts, int off) { argument 127 assert pts.length >= off + 4; 136 return Helpers.cubicRootsInAB(a, b, c, d, pts, off, 0f, 1f); 241 // curve to be broken should be in pts 242 // this will change the contents of pts but not Ts 249 static Iterator<Integer> breakPtsAtTs(final float[] pts, final int type, argument 252 assert pts.length >= 2*type && numTs <= Ts.length; 273 pts, curCurveOf [all...] |
H A D | Helpers.java | 86 float[] pts, final int off, 90 int num = quadraticRoots(a, b, c, pts, off); 91 return filterOutNotInAB(pts, off, num, A, B) - off; 127 pts[ off+0 ] = (float)( t * cos(phi)); 128 pts[ off+1 ] = (float)(-t * cos(phi + PI / 3)); 129 pts[ off+2 ] = (float)(-t * cos(phi - PI / 3)); 136 pts[ off ] = (float)(u + v); 140 pts[off+1] = -(pts[off] / 2); 148 pts[ of 85 cubicRootsInAB(float d, float a, float b, float c, float[] pts, final int off, final float A, final float B) argument [all...] |
H A D | Dasher.java | 141 // precondition: pts must be in relative coordinates (relative to x0,y0) 142 // fullCurve is true iff the curve in pts has not been split. 143 private void goTo(float[] pts, int off, final int type) { argument 144 float x = pts[off + type - 4]; 145 float y = pts[off + type - 3]; 151 System.arraycopy(pts, off, firstSegmentsBuffer, firstSegidx, type - 2); 158 emitSeg(pts, off, type); 331 public void initializeIterationOnCurve(float[] pts, int type) { argument 332 System.arraycopy(pts, 0, recCurveStack[0], 0, type);
|
H A D | Stroker.java | 547 private int computeOffsetCubic(float[] pts, final int off, argument 557 final float x1 = pts[off + 0], y1 = pts[off + 1]; 558 final float x2 = pts[off + 2], y2 = pts[off + 3]; 559 final float x3 = pts[off + 4], y3 = pts[off + 5]; 560 final float x4 = pts[off + 6], y4 = pts[off + 7]; 697 private int computeOffsetQuad(float[] pts, fina argument 886 findSubdivPoints(float[] pts, float[] ts, final int type, final float w) argument 1171 pop(float[] pts) argument [all...] |
/openjdk7/jdk/src/share/classes/java/awt/geom/ |
H A D | CubicCurve2D.java | 759 * @param pts an array of <code>Point2D</code> objects 760 * @param offset the index of <code>pts</code> from which to begin setting 762 * points contained in <code>pts</code> 765 public void setCurve(Point2D[] pts, int offset) { argument 766 setCurve(pts[offset + 0].getX(), pts[offset + 0].getY(), 767 pts[offset + 1].getX(), pts[offset + 1].getY(), 768 pts[offset + 2].getX(), pts[offse [all...] |
H A D | QuadCurve2D.java | 587 * @param pts an array containing <code>Point2D</code> that define 589 * @param offset the index into <code>pts</code> from which to start 594 public void setCurve(Point2D[] pts, int offset) { argument 595 setCurve(pts[offset + 0].getX(), pts[offset + 0].getY(), 596 pts[offset + 1].getX(), pts[offset + 1].getY(), 597 pts[offset + 2].getX(), pts[offset + 2].getY());
|
/openjdk7/jdk/src/share/classes/sun/font/ |
H A D | LayoutPathImpl.java | 165 public SegmentPath build(EndType etype, double... pts) { argument 166 assert(pts.length % 2 == 0); 168 reset(pts.length / 2 * 3); 170 for (int i = 0; i < pts.length; i += 2) { 171 nextPoint(pts[i], pts[i+1], i != 0); 316 public static SegmentPath get(EndType etype, double... pts) { argument 317 return new SegmentPathBuilder().build(etype, pts);
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/ |
H A D | Gen.java | 851 * @param pts The expression's expected types (i.e. the formal parameter 854 public void genArgs(List<JCExpression> trees, List<Type> pts) { argument 856 genExpr(l.head, pts.head).load(); 857 pts = pts.tail; 860 Assert.check(pts.isEmpty());
|
/openjdk7/hotspot/src/share/vm/classfile/ |
H A D | systemDictionary.cpp | 2360 objArrayHandle pts = oopFactory::new_objArray(SystemDictionary::Class_klass(), npts, CHECK_(empty)); local 2387 pts->obj_at_put(arg++, mirror); 2404 // call java.lang.invoke.MethodHandleNatives::findMethodType(Class rt, Class[] pts) -> MethodType 2406 args.push_oop(pts());
|
H A D | javaClasses.cpp | 2554 objArrayOop pts = ptypes(mt); local 2555 for (int i = 0, limit = pts->length(); i < limit; i++) { 2556 java_lang_Class::print_signature(pts->obj_at(i), st); 2610 objArrayOop pts = ptypes(mt); local 2611 int count = pts->length(); 2614 BasicType bt = java_lang_Class::as_BasicType(pts->obj_at(i));
|