| /openjdk7/jdk/src/solaris/native/sun/java2d/loops/ |
| H A D | mlib_v_ImageClear.c | 29 * mlib_ImageClear - Clear an image to a specific color. 33 * const mlib_s32 *color); 37 * color Pointer to the color that the image is set to. 44 * Clear an image to a specific color. 72 const mlib_s32 *color) 82 mlib_v_ImageClear_BIT_1(img, color); 86 mlib_v_ImageClear_BIT_2(img, color); 90 mlib_v_ImageClear_BIT_3(img, color); 94 mlib_v_ImageClear_BIT_4(img, color); 71 __mlib_ImageClear(mlib_image *img, const mlib_s32 *color) argument [all...] |
| /openjdk7/jdk/src/share/classes/sun/awt/ |
| H A D | Graphics2Delegate.java | 32 void setBackground(Color color); argument
|
| /openjdk7/jdk/src/share/classes/java/awt/color/ |
| H A D | CMMException.java | 41 package java.awt.color;
|
| H A D | ProfileDataException.java | 26 package java.awt.color;
|
| H A D | ICC_ProfileGray.java | 36 package java.awt.color; 44 * which meet the following criteria: the color space type of the 53 * optimize color conversion in some cases. 55 * To transform from a GRAY device profile color space to the CIEXYZ Profile
|
| H A D | ICC_ProfileRGB.java | 36 package java.awt.color; 46 * <li>The profile's color space type is RGB.</li> 57 * This profile class provides color transform matrices and lookup tables 59 * optimize color conversion in some cases. 61 * To transform from a device profile color space to the CIEXYZ Profile 62 * Connection Space, each device color component is first linearized by 149 * This matrix can be used for color transforms in the forward 150 * direction of the profile--from the profile color space
|
| /openjdk7/jdk/src/share/classes/javax/swing/ |
| H A D | DebugGraphicsFilter.java | 36 Color color; field in class:DebugGraphicsFilter 40 color = c; 44 return color.getRGB() | (rgb & 0xFF000000);
|
| /openjdk7/jdk/src/share/classes/javax/swing/colorchooser/ |
| H A D | ColorSelectionModel.java | 50 * Sets the selected color to <code>color</code>. 51 * Note that setting the color to <code>null</code> 54 * current color to a new non-<code>null</code> color. 56 * @param color the new <code>Color</code> 60 void setSelectedColor(Color color); argument
|
| H A D | ColorModelCMYK.java | 35 void setColor(int color, float[] space) { argument 36 super.setColor(color, space); 49 * Converts CMYK components of a color to a set of RGB components. 54 * that contains RGB components of a color 68 * Converts RGB components of a color to a set of CMYK components. 71 * that contains RGB components of a color
|
| H A D | ColorModelHSV.java | 35 void setColor(int color, float[] space) { argument 36 super.setColor(color, space); 59 * Converts HSV components of a color to a set of RGB components. 64 * that contains RGB components of a color 114 * Converts RGB components of a color to a set of HSV components. 117 * that contains RGB components of a color
|
| H A D | DefaultColorSelectionModel.java | 55 * current color set to <code>Color.white</code>. This is 64 * current color set to <code>color</code>, which should be 65 * non-<code>null</code>. Note that setting the color to 69 * @param color the new <code>Color</code> 71 public DefaultColorSelectionModel(Color color) { argument 72 selectedColor = color; 86 * Sets the selected color to <code>color</code>. 87 * Note that setting the color t 96 setSelectedColor(Color color) argument [all...] |
| /openjdk7/jdk/src/windows/native/sun/windows/ |
| H A D | awt_Brush.cpp | 30 AwtBrush::AwtBrush(COLORREF color) { argument 36 SetColor(color); 37 HBRUSH brush = ::CreateSolidBrush(color); 45 brush = ::CreateSolidBrush(color); 56 AwtBrush* AwtBrush::Get(COLORREF color) { argument 61 reinterpret_cast<void*>(static_cast<INT_PTR>(color)))); 63 obj = new AwtBrush(color); 65 static_cast<INT_PTR>(color)), obj) == NULL);
|
| H A D | awt_Pen.cpp | 30 AwtPen::AwtPen(COLORREF color) { argument 36 SetColor(color); 37 HPEN pen = ::CreatePen(PS_SOLID, 1, color); 45 pen = ::CreatePen(PS_SOLID, 1, color); 56 AwtPen* AwtPen::Get(COLORREF color) { argument 61 reinterpret_cast<void*>(static_cast<INT_PTR>(color)))); 63 obj = new AwtPen(color); 65 reinterpret_cast<void*>(static_cast<INT_PTR>(color)),
|
| /openjdk7/jdk/src/share/classes/java/awt/ |
| H A D | ColorPaintContext.java | 37 int color; field in class:ColorPaintContext 40 protected ColorPaintContext(int color, ColorModel cm) { argument 41 this.color = color; 48 * Returns the RGB value representing the color in the default sRGB 52 * @return the RGB value of the color in the default sRGB 60 return color; 73 Arrays.fill(icr.getDataStorage(), color);
|
| /openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/ |
| H A D | ColorIcon.java | 37 private Color color; field in class:ColorIcon 40 color = c; 44 g.setColor(color);
|
| /openjdk7/jdk/src/macosx/classes/com/apple/laf/ |
| H A D | AquaNativeResources.java | 43 // The color passed to this MUST be a retained NSColor, and the CColorPaintUIResource 45 public CColorPaintUIResource(long color, int r, int g, int b, int a) { argument 47 //super(color, r, g, b, a);
|
| /openjdk7/jaxp/src/org/w3c/dom/html/ |
| H A D | HTMLBaseFontElement.java | 51 * Font color. See the color attribute definition in HTML 4.0. This 55 public void setColor(String color); argument
|
| H A D | HTMLFontElement.java | 51 * Font color. See the color attribute definition in HTML 4.0. This 55 public void setColor(String color); argument
|
| /openjdk7/jdk/test/java/awt/FullScreen/FullScreenInsets/ |
| H A D | FullScreenInsets.java | 124 private static void testColor(final Window w, final Color color) { argument 136 if (bi.getRGB(x, y) != color.getRGB()) { 141 color.getRGB()));
|
| /openjdk7/jdk/test/java/beans/XMLEncoder/ |
| H A D | javax_swing_JLayeredPane.java | 41 private static void init(JLayeredPane pane, int layer, int x, int y, int w, int h, Color color) { argument 43 panel.setBackground(color);
|
| /openjdk7/langtools/test/tools/apt/mirror/declaration/ |
| H A D | EnumDecl.java | 85 @Test(result={"java.lang.String color"}) 123 private String color; field in class:E 124 E(String color) { argument 125 this.color = color;
|
| /openjdk7/jdk/src/share/native/sun/awt/medialib/ |
| H A D | mlib_ImageConvClearEdge_Fp.c | 30 * color. (for float-point image) 38 * const mlib_d64 *color, 51 * color Pointer to the color that the edges are set to. 61 * Set edge of an image to a specific color. 86 color_i = (type) color[l]; \ 116 const mlib_d64 *color, 111 mlib_ImageConvClearEdge_Fp(mlib_image *img, mlib_s32 dx_l, mlib_s32 dx_r, mlib_s32 dy_t, mlib_s32 dy_b, const mlib_d64 *color, mlib_s32 cmask) argument
|
| H A D | mlib_c_ImageConvClearEdge.c | 29 * mlib_ImageConvClearEdge - Set edge of an image to a specific color. 37 * const mlib_s32 *color, 50 * color Pointer to the color that the edges are set to. 60 * Set edge of an image to a specific color. (VIS version) 85 color_i = (type)color[l]; \ 115 const mlib_s32 *color, 137 return mlib_ImageConvClearEdge_Bit(dst, dx_l, dx_r, dy_t, dy_b, color, cmask); 110 mlib_ImageConvClearEdge(mlib_image *dst, mlib_s32 dx_l, mlib_s32 dx_r, mlib_s32 dy_t, mlib_s32 dy_b, const mlib_s32 *color, mlib_s32 cmask) argument
|
| /openjdk7/jdk/src/share/demo/jfc/SampleTree/ |
| H A D | SampleData.java | 54 protected Color color; field in class:SampleData 64 color = newColor; 83 * Sets the color used to draw the text. 86 color = newColor; 90 * Returns the color used to draw the text. 93 return color;
|
| /openjdk7/jdk/src/share/classes/sun/swing/icon/ |
| H A D | SortArrowIcon.java | 50 private Color color; field in class:SortArrowIcon 52 // If non-null indicates the color should come from the UIManager with 61 * @param color the color to render the icon 63 public SortArrowIcon(boolean ascending, Color color) { argument 65 this.color = color; 66 if (color == null) { 76 * @param colorKey the key used to find color in UIManager 116 if (color ! [all...] |