Searched defs:hOffset (Results 1 - 3 of 3) sorted by relevance
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/ |
H A D | DerivedColor.java | 43 private final float hOffset, sOffset, bOffset; field in class:DerivedColor 47 DerivedColor(String uiDefaultParentName, float hOffset, float sOffset, float bOffset, int aOffset) { argument 50 this.hOffset = hOffset; 61 return hOffset; 84 tmp[0] = clamp(tmp[0] + hOffset); 91 tmp[0] = clamp(hOffset); 121 if (Float.compare(that.hOffset, hOffset) != 0) return false; 130 result = 31 * result + hOffset ! 177 UIResource(String uiDefaultParentName, float hOffset, float sOffset, float bOffset, int aOffset) argument [all...] |
H A D | NimbusLookAndFeel.java | 378 * @param hOffset The hue offset 387 float hOffset, float sOffset, 390 return defaults.getDerivedColor(uiDefaultParentName, hOffset, sOffset, 386 getDerivedColor(String uiDefaultParentName, float hOffset, float sOffset, float bOffset, int aOffset, boolean uiResource) argument
|
H A D | AbstractRegionPainter.java | 318 * @param hOffset The hue offset used for derivation. 325 protected final Color decodeColor(String key, float hOffset, float sOffset, argument 329 return laf.getDerivedColor(key, hOffset, sOffset, bOffset, aOffset, true); 333 return Color.getHSBColor(hOffset,sOffset,bOffset);
|
Completed in 35 milliseconds