Searched defs:blur (Results 1 - 6 of 6) sorted by relevance
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/ |
H A D | EffectUtils.java | 64 * @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...] |
/openjdk7/jaxp/src/org/w3c/dom/html/ |
H A D | HTMLSelectElement.java | 155 public void blur(); method in interface:HTMLSelectElement
|
H A D | HTMLTextAreaElement.java | 130 public void blur(); method in interface:HTMLTextAreaElement
|
H A D | HTMLAnchorElement.java | 133 public void blur(); method in interface:HTMLAnchorElement
|
H A D | HTMLInputElement.java | 204 public void blur(); method in interface:HTMLInputElement
|
/openjdk7/jdk/src/macosx/classes/com/apple/laf/ |
H A D | AquaUtils.java | 262 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...] |
Completed in 40 milliseconds