Searched defs:cx (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DJavaAdapter.java55 static void init(Context cx, Scriptable scope, boolean sealed) argument
74 public Object call(Context cx, Scriptable scope, Scriptable thisObj, argument
76 return construct(cx, scope, args);
79 public Scriptable construct(Context cx, Scriptable scope, Object[] args) argument
99 return cx.toObject(engine.getInterface(args[1], clazz), topLevel);
H A DRhinoTopLevel.java41 RhinoTopLevel(Context cx, RhinoScriptEngine engine) { argument
45 super(cx, System.getSecurityManager() != null);
58 JavaAdapter.init(cx, this, false);
78 public static Object bindings(Context cx, Scriptable thisObj, Object[] args, argument
92 return cx.getUndefinedValue();
108 public static Object scope(Context cx, Scriptable thisObj, Object[] args, argument
124 return cx.getUndefinedValue();
145 public static Object sync(Context cx, Scriptable thisObj, Object[] args, argument
H A DRhinoWrapFactory.java71 public Scriptable wrapAsJavaObject(Context cx, Scriptable scope, argument
82 return super.wrapAsJavaObject(cx, scope, javaObject, staticType);
104 return super.wrapAsJavaObject(cx, scope, javaObject, staticType);
145 return super.wrapAsJavaObject(cx, scope, javaObject, staticType);
H A DJSAdapter.java78 public static void init(Context cx, Scriptable scope, boolean sealed) argument
80 JSAdapter obj = new JSAdapter(cx.newObject(scope));
249 public Object call(Context cx, Scriptable scope, Scriptable thisObj, argument
253 return construct(cx, scope, args);
257 return ((Function)tmp).call(cx, scope, tmp, args);
264 public Scriptable construct(Context cx, Scriptable scope, Object[] args) argument
278 return ((Function)tmp).construct(cx, scope, args);
317 Context cx = Context.getCurrentContext();
321 return func.call(cx, scope, thisObj, args);
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dmlib_v_ImageZoom_NN_f.c166 mlib_s32 cx, y0 = -1, dx7 = 7*dx, dx15 = 8*dx + dx7; local
183 cx = x >> MLIB_SHIFT;
184 tt = tsp + 2*cx + cx;
198 cx = x >> MLIB_SHIFT;
199 tt = tsp + 2*cx + cx;
205 cx = x >> MLIB_SHIFT;
206 tt = tsp + 2*cx + cx;
287 mlib_s32 cx, y0 = -1, dx3 = 3*dx, dx7 = 4*dx + dx3; local
[all...]
H A Dmlib_ImageZoom_NN.c627 mlib_s32 cx, y_step = -1; local
640 cx = (x >> (MLIB_SHIFT - 1)) & ~1;
641 tmp0 = tsp[cx];
642 tmp1 = tsp[cx + 1];
651 cx = (x >> (MLIB_SHIFT - 1)) & ~1;
652 tmp0 = tsp[cx];
653 tmp1 = tsp[cx + 1];
678 mlib_s32 cx, y_step = -1; local
694 cx = (x >> (MLIB_SHIFT - 2)) & ~3;
695 tmp0 = tsp[cx];
770 mlib_s32 cx, y_step = -1; local
847 mlib_s32 cx, y_step = -1; local
1022 mlib_s32 cx, y_step = -1, tmp0, tmp1, tmp2, tmp3, x_max; local
1104 mlib_s32 cx, y_step = -1, tmp0, tmp1, tmp2; local
1164 mlib_s32 cx, y_step = -1, tmp0, tmp1, tmp2, tmp3; local
1260 mlib_s32 cx, y_step; local
1295 mlib_s32 cx, y_step; local
1332 mlib_s32 cx, y_step; local
1384 mlib_s32 cx, y_step; local
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DRadialGradientPaint.java168 * @param cx the X coordinate in user space of the center point of the
192 public RadialGradientPaint(float cx, float cy, float radius, argument
195 this(cx, cy,
197 cx, cy,
244 * @param cx the X coordinate in user space of the center point of the
271 public RadialGradientPaint(float cx, float cy, float radius, argument
275 this(cx, cy,
277 cx, cy,
327 * @param cx the X coordinate in user space of the center point of the
358 public RadialGradientPaint(float cx, floa argument
[all...]
H A DRadialGradientPaintContext.java91 * @param cx the center X coordinate in user space of the circle defining
115 float cx, float cy,
127 centerX = cx;
109 RadialGradientPaintContext(RadialGradientPaint paint, ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform t, RenderingHints hints, float cx, float cy, float r, float fx, float fy, float[] fractions, Color[] colors, CycleMethod cycleMethod, ColorSpaceType colorSpace) argument
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dsun_awt_X11_GtkFileDialogPeer.c18 (JNIEnv *env, jclass cx)
20 filenameFilterCallbackMethodID = (*env)->GetMethodID(env, cx,
24 setFileInternalMethodID = (*env)->GetMethodID(env, cx,
28 widgetFieldID = (*env)->GetFieldID(env, cx, "widget", "J");
35 jclass cx; local
179 jclass cx; local
17 Java_sun_awt_X11_GtkFileDialogPeer_initIDs(JNIEnv *env, jclass cx) argument
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gif.c84 int cx, cy, cw, ch; /* clamped coordinates */ local
146 cx = FIX_POINT(desc->Left, 0, gif->SWidth);
246 initRect(&dstRect, cx, cy + ofs, cw,
287 cx, cy, cw, ch,
297 int lineOffset = cx * splash->imageFormat.depthBytes;
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DCurve.java32 float ax, ay, bx, by, cx, cy, dx, dy; field in class:Curve
65 cx = 3 * (x2 - x1);
81 cx = 2 * (x2 - x1);
90 return t * (t * (t * ax + bx) + cx) + dx;
97 return t * (t * dax + dbx) + cx;
105 return Helpers.quadraticRoots(dax, dbx, cx, roots, off);
117 final float b = 2 * (cy * dax - day * cx);
118 final float c = cy * dbx - cx * dby;
134 final float c = 2*(dax*cx + day*cy) + dbx*dbx + dby*dby;
135 final float d = dbx*cx
[all...]
H A DStroker.java188 private void drawRoundJoin(float cx, float cy, argument
204 drawBezApproxForArc(cx, cy, omx, omy, mx, my, rev);
233 drawBezApproxForArc(cx, cy, omx, omy, mmx, mmy, rev);
234 drawBezApproxForArc(cx, cy, mmx, mmy, mx, my, rev);
240 private void drawBezApproxForArc(final float cx, final float cy, argument
257 final float x1 = cx + omx;
262 final float x4 = cx + mx;
270 private void drawRoundCap(float cx, float cy, float mx, float my) { argument
277 emitCurveTo(cx+mx, cy+my,
278 cx
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DLayoutPathImpl.java406 double cx = 0; // current best x
465 cx = vcx;
480 if (cx != bx || cy != by) { // not on endpoint, no need to resolve
484 if ((x-cx)*(ny-by) > (y-cy)*(nx-bx)) {
762 double cx, cy; // last point in gp field in class:LayoutPathImpl.SegmentPath.Segment
776 cx = cy = Double.MIN_VALUE;
807 if (sx != cx || sy != cy) {
820 cx = lx;
/openjdk7/hotspot/src/share/vm/opto/
H A Dconnode.cpp963 Node* cx = phase->transform( new (phase->C) ConvI2LNode(x, TypeLong::make(rxlo, rxhi, widen)) ); local
966 case Op_AddI: return new (phase->C) AddLNode(cx, cy);
967 case Op_SubI: return new (phase->C) SubLNode(cx, cy);
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11Renderer.c290 long ty1, ty2, tx1, tx2, cx, cy, cxw, cyh, local
317 cx = CLAMP_TO_SHORT(x);
332 leftW = (tx1 - cx) * 2;
338 cx, cy, leftW, topH,
344 cx, cyh - bottomH, leftW, bottomH,
360 cx, ty1, cx, ty2);
697 long ty1, ty2, tx1, tx2, cx, cy, cxw, cyh, local
724 cx = CLAMP_TO_SHORT(x);
739 leftW = (tx1 - cx) *
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c1033 jint cx = (jint)((-3*coords[0] + 3*coords[2])*(CUB_C_MDP_MULT)); local
1042 jint dpx = ax + (bx>>1) + cx;
1309 double cx = -coords[0] + coords[2]; local
1311 SOLVEQUADINRANGE(ax,bx,cx,params,cnt);
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c2613 int cx; local
2618 while ((cx = *str) != 0 &&
2619 (s_mp_tovalue(cx, radix) < 0) &&
2620 cx != '-' &&
2621 cx != '+') {
2625 if (cx == '-') {
2628 } else if (cx == '+') {

Completed in 88 milliseconds