Searched refs:pts (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/reflect/generics/tree/
H A DMethodTypeSignature.java37 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/reflect/generics/repository/
H A DConstructorRepository.java88 TypeSignature[] pts = getTree().getParameterTypes();
90 Type[] ps = new Type[pts.length];
92 for (int i = 0; i < pts.length; i++) {
94 pts[i].accept(r); // reify subtree
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DAffineTransformOp.java393 float[] pts = {0, 0, w, 0, w, h, 0, h};
394 xform.transform(pts, 0, pts, 0, 4);
397 float fmaxX = pts[0];
398 float fmaxY = pts[1];
399 float fminX = pts[0];
400 float fminY = pts[1];
402 if (pts[i] > fmaxX) {
403 fmaxX = pts[i];
405 else if (pts[
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DCurve.java112 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 DStroker.java547 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...]
H A DHelpers.java86 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 DDasher.java141 // 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);
/openjdk7/jdk/src/share/classes/sun/reflect/generics/visitor/
H A DReifier.java138 Type[] pts = reifyTypeArguments(sc.getTypeArguments());
140 Type owner = getFactory().makeParameterizedType(c, pts, null);
148 pts = reifyTypeArguments(sc.getTypeArguments());// reify params
151 owner = getFactory().makeParameterizedType(c, pts, owner);
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/
H A DMethodFinder.java166 Class<?>[] pts = m.getParameterTypes();
167 if (pts.length == params.length) {
168 if (Arrays.equals(params, pts)) {
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DQuadCurve2D.java587 * @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());
H A DCubicCurve2D.java759 * @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...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DLayoutPathImpl.java165 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/jdk/src/share/classes/sun/reflect/generics/parser/
H A DSignatureParser.java587 TypeSignature[] pts = parseZeroOrMoreTypeSignatures();
590 return pts;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java851 * @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/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DIDLGenerator.java1885 Type[] pts = method.getArguments();
1900 for ( int i=0; i < pts.length; i++ ) {
1904 p.p( getQualifiedIDLName( pts[i] ) );
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp2554 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));
H A DsystemDictionary.cpp2360 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());

Completed in 169 milliseconds