Searched defs:adjust (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DLinearGradientPaintContext.java133 protected void fillRaster(int[] pixels, int off, int adjust, argument
159 off += adjust;
H A DGradientPaintContext.java236 int adjust = irast.getScanlineStride() - w;
240 cycleFillRaster(pixels, off, adjust, w, h, rowrel, dx, dy);
242 clipFillRaster(pixels, off, adjust, w, h, rowrel, dx, dy);
250 void cycleFillRaster(int[] pixels, int off, int adjust, int w, int h, argument
263 off += adjust;
268 void clipFillRaster(int[] pixels, int off, int adjust, int w, int h, argument
291 off += adjust;
H A DMultipleGradientPaintContext.java647 int adjust = scanlineStride - w;
649 fillRaster(pixels, off, adjust, x, y, w, h); // delegate to subclass
654 protected abstract void fillRaster(int pixels[], int off, int adjust, argument
H A DRadialGradientPaintContext.java173 protected void fillRaster(int pixels[], int off, int adjust, argument
177 simpleNonCyclicFillRaster(pixels, off, adjust, x, y, w, h);
179 cyclicCircularGradientFillRaster(pixels, off, adjust, x, y, w, h);
188 private void simpleNonCyclicFillRaster(int pixels[], int off, int adjust, argument
232 // adjust is (scan-w) of pixels array, we need (scan)
233 adjust += w;
296 off += adjust;
331 int adjust,
375 int pixInc = w+adjust;
330 cyclicCircularGradientFillRaster(int pixels[], int off, int adjust, int x, int y, int w, int h) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A DDevices.cpp297 * If adjust parameter is true (default), adjust the index into the
305 BOOL adjust)
308 "Devices::GetDeviceReference index=%d adjust?=%d",
309 index, adjust);
311 AwtWin32GraphicsDevice * ret = GetDevice(index, adjust);
325 AwtWin32GraphicsDevice *Devices::GetDevice(int index, BOOL adjust) argument
328 "Devices::GetDevice index=%d adjust?=%d",
329 index, adjust);
331 if (!adjust) {
304 GetDeviceReference(int index, BOOL adjust) argument
[all...]
H A Dawt_Button.cpp229 int adjust = (nState & DFCS_PUSHED) ? 1 : 0; local
230 int x = (rect.left + rect.right-size.cx) / 2 + adjust;
231 int y = (rect.top + rect.bottom-size.cy) / 2 + adjust;
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DKernTable.cpp229 float adjust = 0; local
274 adjust += pt.fX;
281 storage.adjustPosition(i, adjust, 0, success);
283 storage.adjustPosition(storage.getGlyphCount(), adjust, 0, success);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DShapeSpanIterator.java76 public ShapeSpanIterator(boolean adjust) { argument
77 setNormalize(adjust);
105 private native void setNormalize(boolean adjust); argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/
H A DJulesPathBuf.java97 boolean adjust, boolean antialias,
96 tesselateStroke(Shape s, BasicStroke bs, boolean thin, boolean adjust, boolean antialias, AffineTransform at, Region clip) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalRootPaneUI.java801 private void adjust(Rectangle bounds, Dimension min, int deltaX, method in class:MetalRootPaneUI.MouseInputHandler
841 adjust(r, min, 0, 0, pt.x + (dragWidth - dragOffsetX) -
845 adjust(r, min, 0, 0, 0, pt.y + (dragHeight - dragOffsetY) -
849 adjust(r, min, 0, pt.y -dragOffsetY, 0,
853 adjust(r, min, pt.x - dragOffsetX, 0,
857 adjust(r, min, 0, pt.y - dragOffsetY,
862 adjust(r, min, 0, 0,
868 adjust(r, min, pt.x - dragOffsetX,
874 adjust(r, min, pt.x - dragOffsetX, 0,
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.cpp57 virtual bool adjust(int bci, int delta) { return false; } function in class:ChangeItem
90 // If the bci matches, adjust the delta in the change jump request.
91 bool adjust(int jump_bci, int delta) { function in class:ChangeJumpWiden
265 // otherwise adjust the item already there by delta. The calculation for
271 if (ci->adjust(bci, delta)) return;
309 // Now, adjust any affected instructions.
475 bool offset_adjusted = false; // only need to adjust one offset
614 // Also adjust exception tables...
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DShapeSpanIterator.c69 char adjust; /* normalize to nearest (0.25, 0.25) */ member in struct:__anon933
164 * _ADJUST is the internal macro used to adjust a new endpoint
166 * which will adjust the control points as needed to match.
175 if (pd->adjust) { \
366 (JNIEnv *env, jobject sr, jboolean adjust)
375 pd->adjust = adjust;
592 if (pd->adjust) {
365 Java_sun_java2d_pipe_ShapeSpanIterator_setNormalize(JNIEnv *env, jobject sr, jboolean adjust) argument

Completed in 64 milliseconds