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

/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DDerivedColor.java43 private final float hOffset, sOffset, bOffset; field in class:DerivedColor
47 DerivedColor(String uiDefaultParentName, float hOffset, float sOffset, float bOffset, int aOffset) { argument
51 this.sOffset = sOffset;
65 return sOffset;
85 tmp[1] = clamp(tmp[1] + sOffset);
92 tmp[1] = clamp(sOffset);
122 if (Float.compare(that.sOffset, sOffset) != 0) return false;
132 result = 31 * result + sOffset !
177 UIResource(String uiDefaultParentName, float hOffset, float sOffset, float bOffset, int aOffset) argument
[all...]
H A DNimbusLookAndFeel.java379 * @param sOffset The saturation 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 DAbstractRegionPainter.java319 * @param sOffset The saturation 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 34 milliseconds