Searched defs:colorTable (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gfx.h52 rgbquad_t colorTable[512]; member in struct:DitherSettings
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFGenerator.java55 Dictionary<Object, Integer> colorTable; field in class:RTFGenerator
136 colorTable = new Hashtable<Object, Integer>();
137 colorTable.put(defaultRTFColor, Integer.valueOf(0));
167 colorTable.get(foregroundColor) == null) {
168 colorTable.put(foregroundColor, new Integer(colorCount));
174 colorTable.get(backgroundColor) == null) {
175 colorTable.put(backgroundColor, new Integer(colorCount));
343 Enumeration colors = colorTable.keys();
347 Integer num = colorTable.get(color);
749 colorNum = colorTable
[all...]
H A DRTFReader.java68 Color[] colorTable; field in class:RTFReader
788 colorTable = new Color[count];
789 proTemTable.copyInto(colorTable);
1374 if (colorTable != null) {
1377 Color fg = colorTable[stateItem.intValue()];
1385 if (colorTable != null) {
1388 Color bg = colorTable[stateItem.intValue()];

Completed in 197 milliseconds