Searched refs:maxVal (Results 1 – 3 of 3) sorted by relevance
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/accessibility/ |
| H A D | _XAccessibleValue.java | 56 private double maxVal = 0; field in _XAccessibleValue 93 if (curVal < minVal || maxVal < curVal) { in _getCurrentValue() 94 log.println("" + (curVal - minVal) + "," + (maxVal - curVal)); in _getCurrentValue() 96 + minVal + "," + maxVal + "]"); in _getCurrentValue() 142 if (newVal > maxVal) newVal -= 2; in _setCurrentValue() 169 result &= oObj.setCurrentValue(getObjectValue(maxVal, val.getClass())); in _setCurrentValue() 170 log.println("Setting to "+ getObjectValue(maxVal, val.getClass())); in _setCurrentValue() 173 partResult = Math.abs(maxVal - resVal) < 0.00001; in _setCurrentValue() 194 oObj.setCurrentValue(getObjectValue(maxVal + 1, val.getClass())); in _setCurrentValue() 195 log.println("Setting to "+ getObjectValue(maxVal +1 , val.getClass())); in _setCurrentValue() [all …]
|
| /trunk/main/basegfx/source/color/ |
| H A D | bcolortools.cxx | 35 const double maxVal = ::std::max( ::std::max( r, g ), b ); in rgb2hsl() local 36 const double d = maxVal - minVal; in rgb2hsl() 40 l = (maxVal + minVal) / 2.0; in rgb2hsl() 48 s = l > 0.5 ? d/(2.0-maxVal-minVal) : in rgb2hsl() 49 d/(maxVal + minVal); in rgb2hsl() 51 if( r == maxVal ) in rgb2hsl() 53 else if( g == maxVal ) in rgb2hsl() 111 const double maxVal = std::max(std::max(r,g),b); in rgb2hsv() local 113 const double delta = maxVal-minVal; in rgb2hsv() 117 v = maxVal; in rgb2hsv() [all …]
|
| /trunk/main/basegfx/inc/basegfx/range/ |
| H A D | basicrange.hxx | 45 mnMinimum(Traits::maxVal()), in BasicRange() 64 mnMinimum = Traits::maxVal(); in reset() 70 return Traits::maxVal() == mnMinimum; in isEmpty() 276 static double maxVal() { return DBL_MAX; }; in maxVal() function 285 static sal_Int32 maxVal() { return SAL_MAX_INT32; }; in maxVal() function
|