Searched refs:blur (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLSelectElement.java155 public void blur(); method in interface:HTMLSelectElement
H A DHTMLTextAreaElement.java130 public void blur(); method in interface:HTMLTextAreaElement
H A DHTMLAnchorElement.java133 public void blur(); method in interface:HTMLAnchorElement
H A DHTMLInputElement.java204 public void blur(); method in interface:HTMLInputElement
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaUtils.java262 final int blur; field in class:AquaUtils.ShadowBorder
266 public ShadowBorder(final Painter prePainter, final Painter postPainter, final int offsetX, final int offsetY, final float distance, final float intensity, final int blur) { argument
268 this.offsetX = offsetX; this.offsetY = offsetY; this.distance = distance; this.blur = blur;
269 final int halfBlur = blur / 2;
272 final float blurry = intensity / (blur * blur);
273 final float[] blurKernel = new float[blur * blur];
275 blurOp = new ConvolveOp(new Kernel(blur, blu
325 SlicedShadowBorder(final Painter prePainter, final Painter postPainter, final int offsetX, final int offsetY, final float distance, final float intensity, final int blur, final int templateWidth, final int templateHeight, final int leftCut, final int topCut, final int rightCut, final int bottomCut) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java64 * @param radius The blur kernel radius
79 blur(srcPixels, dstPixels, width, height, kernel, radius);
82 blur(dstPixels, srcPixels, height, width, kernel, radius);
90 blur(srcPixels, dstPixels, width, height, kernel, radius);
93 blur(dstPixels, srcPixels, height, width, kernel, radius);
104 * <p>Blurs the source pixels into the destination pixels. The force of the blur is specified by the radius which
113 * @param kernel the kernel of the blur effect
114 * @param radius the radius of the blur effect
116 private static void blur(int[] srcPixels, int[] dstPixels, method in class:EffectUtils
166 * <p>Blurs the source pixels into the destination pixels. The force of the blur i
178 static void blur(byte[] srcPixels, byte[] dstPixels, method in class:EffectUtils
[all...]
H A DDropShadowEffect.java102 // blur
104 EffectUtils.blur(tmpBuf1, tmpBuf2, tmpW, tmpH, kernel, size); // horizontal pass
105 EffectUtils.blur(tmpBuf2, tmpBuf1, tmpH, tmpW, kernel, size);// vertical pass
H A DInnerShadowEffect.java101 // blur
103 EffectUtils.blur(srcAlphaBuf, tmpBuf2, tmpW, tmpH, kernel, size * 2); // horizontal pass
104 EffectUtils.blur(tmpBuf2, tmpBuf1, tmpH, tmpW, kernel, size * 2);// vertical pass

Completed in 587 milliseconds