Lines Matching refs:getVal

187             boolean getVal = row.getBoolean(idx) ;  in _updateBoolean()
188 result = newVal == getVal ; in _updateBoolean()
216 byte getVal = row.getByte(idx) ; in _updateByte()
217 result = newVal == getVal ; in _updateByte()
245 short getVal = row.getShort(idx) ; in _updateShort() local
246 result = newVal == getVal ; in _updateShort()
274 int getVal = row.getInt(idx) ; in _updateInt() local
275 result = newVal == getVal ; in _updateInt()
303 long getVal = row.getLong(idx) ; in _updateLong() local
304 result = newVal == getVal ; in _updateLong()
332 float getVal = row.getFloat(idx) ; in _updateFloat() local
333 result = newVal == getVal ; in _updateFloat()
361 double getVal = row.getDouble(idx) ; in _updateDouble() local
362 result = newVal == getVal ; in _updateDouble()
390 String getVal = row.getString(idx) ; in _updateString() local
391 result = newVal.equals(getVal) ; in _updateString()
393 + getVal + "'") ; in _updateString()
426 byte[] getVal = row.getBytes(idx) ; in _updateBytes()
427 result = ValueComparer.equalValue(newVal, getVal) ; in _updateBytes()
456 Date getVal = row.getDate(idx) ; in _updateDate() local
457 result = ValueComparer.equalValue(newVal, getVal) ; in _updateDate()
486 Time getVal = row.getTime(idx) ; in _updateTime() local
487 result = ValueComparer.equalValue(newVal, getVal) ; in _updateTime()
516 DateTime getVal = row.getTimestamp(idx) ; in _updateTimestamp() local
517 result = ValueComparer.equalValue(newVal, getVal) ; in _updateTimestamp()
550 XInputStream getVal = row.getBinaryStream(idx) ; in _updateBinaryStream() local
551 result = UnoRuntime.areSame(newVal, getVal) ; in _updateBinaryStream()
587 XInputStream getVal = row.getCharacterStream(idx) ; in _updateCharacterStream() local
588 result = UnoRuntime.areSame(newVal, getVal) ; in _updateCharacterStream()