Lines Matching refs:oObj
57 public XNumericField oObj = null; field in _XNumericField
78 oObj.setValue(val + 1.1) ; in _setValue()
80 tRes.tested("setValue()", oObj.getValue() == val + 1.1) ; in _setValue()
88 val = oObj.getValue() ; in _getValue()
104 oObj.setMin(min + 1.1) ; in _setMin()
106 tRes.tested("setMin()", oObj.getMin() == min + 1.1) ; in _setMin()
116 min = oObj.getMin() ; in _getMin()
133 oObj.setMax(max + 1.1) ; in _setMax()
134 result = oObj.getMax() == max + 1.1 ; in _setMax()
146 max = oObj.getMax() ; in _getMax()
163 oObj.setFirst(first + 1.1) ; in _setFirst()
164 double ret = oObj.getFirst() ; in _setFirst()
177 first = oObj.getFirst() ; in _getFirst()
194 oObj.setLast(last + 1.1) ; in _setLast()
195 double ret = oObj.getLast() ; in _setLast()
209 last = oObj.getLast() ; in _getLast()
226 oObj.setSpinSize(spin + 1.1) ; in _setSpinSize()
227 result = oObj.getSpinSize() == spin + 1.1 ; in _setSpinSize()
239 spin = oObj.getSpinSize() ; in _getSpinSize()
256 oObj.setDecimalDigits((short)(digits + 1)) ; in _setDecimalDigits()
258 short res = oObj.getDecimalDigits() ; in _setDecimalDigits()
271 digits = oObj.getDecimalDigits() ; in _getDecimalDigits()
288 oObj.setStrictFormat(!strict) ; in _setStrictFormat()
289 result = oObj.isStrictFormat() == !strict ; in _setStrictFormat()
301 strict = oObj.isStrictFormat() ; in _isStrictFormat()