Lines Matching refs:newVal

185             boolean newVal = !row.getBoolean(idx) ;  in _updateBoolean()
186 oObj.updateBoolean(idx, newVal) ; in _updateBoolean()
188 result = newVal == getVal ; in _updateBoolean()
214 byte newVal = (byte) (row.getByte(idx) + 1) ; in _updateByte()
215 oObj.updateByte(idx, newVal) ; in _updateByte()
217 result = newVal == getVal ; in _updateByte()
243 short newVal = (short) (row.getShort(idx) + 1) ; in _updateShort() local
244 oObj.updateShort(idx, newVal) ; in _updateShort()
246 result = newVal == getVal ; in _updateShort()
272 int newVal = 1 + row.getInt(idx) ; in _updateInt() local
273 oObj.updateInt(idx, newVal) ; in _updateInt()
275 result = newVal == getVal ; in _updateInt()
301 long newVal = 1 + row.getLong(idx) ; in _updateLong() local
302 oObj.updateLong(idx, newVal) ; in _updateLong()
304 result = newVal == getVal ; in _updateLong()
330 float newVal = (float) (1.1 + row.getFloat(idx)); in _updateFloat() local
331 oObj.updateFloat(idx, newVal) ; in _updateFloat()
333 result = newVal == getVal ; in _updateFloat()
359 double newVal = 1.1 + row.getDouble(idx) ; in _updateDouble() local
360 oObj.updateDouble(idx, newVal) ; in _updateDouble()
362 result = newVal == getVal ; in _updateDouble()
388 String newVal = "_" + row.getString(idx) ; in _updateString() local
389 oObj.updateString(idx, newVal) ; in _updateString()
391 result = newVal.equals(getVal) ; in _updateString()
392 log.println("New value = '" + newVal + "', get value = '" in _updateString()
419 byte[] newVal = row.getBytes(idx) ; in _updateBytes()
420 if (newVal == null || newVal.length == 0) { in _updateBytes()
421 newVal = new byte[] {34, 111, 98} ; in _updateBytes()
423 newVal = new byte[] {(byte) (newVal[0] + 1), 111, 98} ; in _updateBytes()
425 oObj.updateBytes(idx, newVal) ; in _updateBytes()
427 result = ValueComparer.equalValue(newVal, getVal) ; in _updateBytes()
453 Date newVal = row.getDate(idx) ; in _updateDate() local
454 newVal.Year ++ ; in _updateDate()
455 oObj.updateDate(idx, newVal) ; in _updateDate()
457 result = ValueComparer.equalValue(newVal, getVal) ; in _updateDate()
483 Time newVal = row.getTime(idx) ; in _updateTime() local
484 newVal.Seconds ++ ; in _updateTime()
485 oObj.updateTime(idx, newVal) ; in _updateTime()
487 result = ValueComparer.equalValue(newVal, getVal) ; in _updateTime()
513 DateTime newVal = row.getTimestamp(idx) ; in _updateTimestamp() local
514 newVal.Year ++ ; in _updateTimestamp()
515 oObj.updateTimestamp(idx, newVal) ; in _updateTimestamp()
517 result = ValueComparer.equalValue(newVal, getVal) ; in _updateTimestamp()
546 XInputStream newVal = (XInputStream) UnoRuntime.queryInterface in _updateBinaryStream() local
549 oObj.updateBinaryStream(idx, newVal, 0) ; in _updateBinaryStream()
551 result = UnoRuntime.areSame(newVal, getVal) ; in _updateBinaryStream()
583 XInputStream newVal = (XInputStream) UnoRuntime.queryInterface in _updateCharacterStream() local
586 oObj.updateCharacterStream(idx, newVal, 0) ; in _updateCharacterStream()
588 result = UnoRuntime.areSame(newVal, getVal) ; in _updateCharacterStream()
618 Object newVal = ((XMultiServiceFactory)tParam.getMSF()). in _updateObject() local
621 oObj.updateObject(idx, newVal) ; in _updateObject()
653 Object newVal = ((XMultiServiceFactory)tParam.getMSF()). in _updateNumericObject() local
656 oObj.updateNumericObject(idx, newVal, 0) ; in _updateNumericObject()