Searched defs:blue (Results 26 - 43 of 43) sorted by relevance

12

/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DPaint.java39 @XmlAttribute private int blue; field in class:Matte
60 red, green, blue, alpha);
71 return String.format("%s, %s, %s, %s", red, green, blue, alpha);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPMetadata.java92 public int blue; field in class:BMPMetadata
178 blue = palette[j++] & 0xff;
181 addChildNode(entry, "Blue", new Byte((byte)blue));
205 subNode1.setAttribute("blue", "" + palette[j++]);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DPaletteBuilder.java281 aNode.blue += aColor.getBlue();
306 byte[] blue = new byte[size];
315 findPaletteEntry(root, index, red, green, blue);
320 icm = new IndexColorModel(8, size, red, green, blue, 0);
322 icm = new IndexColorModel(8, currSize, red, green, blue);
328 byte[] red, byte[] green, byte[] blue)
333 blue[index] = (byte)(aNode.blue/aNode.colorCount);
343 red, green, blue);
437 public long blue; field in class:PaletteBuilder.ColorNode
327 findPaletteEntry(ColorNode aNode, int index, byte[] red, byte[] green, byte[] blue) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/awt_common/
H A Dawt_makecube.cpp64 void setsyscolor(int index, int red, int green, int blue) argument
75 sysPal[i].peBlue == blue)
90 sysPal[index].peBlue = blue;
94 void addcmapcolor(int red, int green, int blue) argument
97 if (red == reds[i] && green == greens[i] && blue == blues[i]) {
106 blues[num_colors] = blue;
188 addcmapcolor( 0, 0, 255); // blue
297 int blue = sysPal[i].peBlue;
308 t = blue - blues[j];
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gfx_impl.h75 int blue = QUAD_BLUE(value); local
79 blue = format->dithers[0].colorTable[blue +
85 return red + green + blue;
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFReader.java760 int red, green, blue; field in class:RTFReader.ColortblDestination
767 blue = 0;
778 newColor = new Color(red, green, blue);
798 else if (keyword.equals("blue"))
799 blue = parameter;
/openjdk7/jdk/src/share/classes/java/awt/
H A DColor.java195 * The color blue. In the default sRGB space.
197 public final static Color blue = new Color(0, 0, 255); field in class:Color
200 * The color blue. In the default sRGB space.
203 public final static Color BLUE = blue;
351 * and blue values in the range (0 - 255).
362 * @param b the blue component
373 * Creates an sRGB color with the specified red, green, blue, and alpha
381 * @param b the blue component
389 @ConstructorProperties({"red", "green", "blue", "alpha"})
401 * in bits 8-15, and the blue componen
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKColorChooserPanel.java208 add(this, "GTKColorChooserPanel.blue", blueSpinner, -1, -1);
317 * Resets the blue component of the selected color.
319 private void setBlue(int blue) { argument
320 setRGB(getColor().getRed() << 16 | getColor().getGreen() << 8 | blue);
1159 * @return integer with red, green and blue components
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DX11Color.c277 col.blue = (b << 8) | b;
321 awt_data->color_data->awt_Colors[col.pixel].b = col.blue >> 8;
348 b = colorsPtr[i].blue >> 8;
602 awt_data->color_data->awt_Colors[i].b = cols[i].blue >> 8;
885 #define blue(v) (((v) >> 0) & 0xFF) macro
959 << aData->renderPictFormat.direct.blue,
1275 col = awt_data->AwtColorMatch(red(col), green(col), blue(col),
1289 green (rgbColors [i]), blue (rgbColors [i]), -1,
H A Dgtk2_interface.h300 guint16 blue; member in struct:__anon983
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A Dimg_colors.c66 unsigned char blue; member in struct:__anon678
336 int blue = (int)(floor(b*255.0/(tablesize - 1))); local
346 pCmap->blue = blue;
347 LUV_convert(red, green, blue, &pCmap->L, &pCmap->U, &pCmap->V);
348 if ((red != green || green != blue) &&
359 if (red == green && green == blue) {
386 int blu = pCmap->blue;
491 j = add_color(pCmap->red, pCmap->green, pCmap->blue, FALSE);
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRBackendNative.java91 short blue, short alpha,
97 short blue, short alpha,
147 (short)color.blue, (short)color.alpha,
160 renderColors[i * 4 + 3] = (short) c.blue;
234 (short) color.blue, (short) color.alpha,
89 renderRectangle(int dst, byte op, short red, short green, short blue, short alpha, int x, int y, int width, int height) argument
95 XRenderRectanglesNative(int dst, byte op, short red, short green, short blue, short alpha, int[] rects, int rectCnt) argument
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DXRBackendNative.c377 jshort red, jshort green, jshort blue, jshort alpha,
383 color.blue = blue;
391 jshort red, jshort green, jshort blue, jshort alpha,
402 color.blue = blue;
488 colors[i].blue = pixels[i*4 + 3];
558 colors[i].blue = pixels[i*4 + 3];
375 Java_sun_java2d_xr_XRBackendNative_renderRectangle(JNIEnv *env, jobject this, jint dst, jbyte op, jshort red, jshort green, jshort blue, jshort alpha, jint x, jint y, jint width, jint height) argument
389 Java_sun_java2d_xr_XRBackendNative_XRenderRectanglesNative(JNIEnv *env, jclass xsd, jint dst, jbyte op, jshort red, jshort green, jshort blue, jshort alpha, jintArray rectArray, jint rectCnt) argument
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrtran.c755 int b = (palette[i].blue >> (8 - PNG_QUANTIZE_BLUE_BITS));
1158 png_ptr->background.blue =
1159 png_ptr->palette[png_ptr->background.index].blue;
1229 = png_ptr->background.blue = png_ptr->background.gray;
1234 = png_ptr->trans_color.blue = png_ptr->trans_color.gray;
1241 = png_ptr->background.blue = png_ptr->background.gray;
1246 = png_ptr->trans_color.blue = png_ptr->trans_color.gray;
1253 = png_ptr->background.blue = png_ptr->background.gray;
1258 = png_ptr->trans_color.blue = png_ptr->trans_color.gray;
1268 = png_ptr->background.blue
3149 png_byte blue = png_ptr->gamma_to_1[*(sp++)]; local
3171 png_byte blue = *(sp++); local
3195 png_uint_16 red, green, blue, w; local
3231 png_uint_16 red, green, blue, gray16; local
3260 png_byte blue = png_ptr->gamma_to_1[*(sp++)]; local
3280 png_byte blue = *(sp++); local
3299 png_uint_16 red, green, blue, w; local
3342 png_uint_16 red, green, blue, gray16; local
4730 png_byte blue = (png_byte)(trans_color->blue & 0xff); local
4971 png_uint_32 blue = (png_uint_32)((s2 + s1 + 65536L) & 0xffffL); local
[all...]
H A Dpng.h556 /* Three color definitions. The order of the red, green, and blue, (and the
564 png_byte blue; member in struct:png_color_struct
573 png_uint_16 red; /* for use in red green blue files */
575 png_uint_16 blue; member in struct:png_color_16_struct
584 png_byte red; /* for use in red green blue files */
586 png_byte blue; member in struct:png_color_8_struct
602 png_uint_16 blue; member in struct:png_sPLT_entry_struct
1137 /* Use blue, green, red order for pixels. */
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c4015 unsigned char red, green, blue; local
4027 blue = argb[3];
4028 if (! ((red == green) && (green == blue)) ) {
4047 blue = argb[3];
4058 t = blue - b;
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPrinterJob.java948 * by <code>(red, green, blue)</code>. Once the brush
1412 * by <code>(red, green, blue)</code>. Once the brush
1417 int red, int green, int blue);
1451 int red, int green, int blue);
1458 int red, int green, int blue);
1466 int red, int green, int blue);
1484 int red, int green, int blue);
1416 selectSolidBrush(long printDC, int red, int green, int blue) argument
1449 fillRect(long printDC, float x, float y, float width, float height, int red, int green, int blue) argument
1457 selectPen(long printDC, float width, int red, int green, int blue) argument
1464 selectStylePen(long printDC, long cap, long join, float width, int red, int green, int blue) argument
1483 setTextColor(long printDC, int red, int green, int blue) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp1685 (JNIEnv *env, jobject self, jlong printDC, jint red, jint green, jint blue) {
1689 HBRUSH colorBrush = ::CreateSolidBrush(RGB(red, green, blue));
1785 jint red, jint green, jint blue) {
1795 HBRUSH brush = ::CreateSolidBrush(RGB(red, green, blue));
1813 jint red, jint green, jint blue) {
1818 RGB(red, green, blue));
1839 jint red, jint green, jint blue) {
1846 logBrush.lbColor = RGB(red, green, blue);
2212 (JNIEnv *env, jobject self, jlong printDC, jint red, jint green, jint blue) {
2214 (void) ::SetTextColor( (HDC)printDC, RGB(red, green, blue));
1684 Java_sun_awt_windows_WPrinterJob_selectSolidBrush(JNIEnv *env, jobject self, jlong printDC, jint red, jint green, jint blue) argument
1782 Java_sun_awt_windows_WPrinterJob_fillRect(JNIEnv *env, jobject self, jlong printDC, jfloat x, jfloat y, jfloat width, jfloat height, jint red, jint green, jint blue) argument
1811 Java_sun_awt_windows_WPrinterJob_selectPen(JNIEnv *env, jobject self, jlong printDC, jfloat width, jint red, jint green, jint blue) argument
1837 Java_sun_awt_windows_WPrinterJob_selectStylePen(JNIEnv *env, jobject self, jlong printDC, jlong cap, jlong join, jfloat width, jint red, jint green, jint blue) argument
[all...]

Completed in 106 milliseconds

12