Lines Matching refs:idx

176         int idx = findColumnOfType(Boolean.class) ;  in _updateBoolean()  local
178 if (idx < 0) { in _updateBoolean()
185 boolean newVal = !row.getBoolean(idx) ; in _updateBoolean()
186 oObj.updateBoolean(idx, newVal) ; in _updateBoolean()
187 boolean getVal = row.getBoolean(idx) ; in _updateBoolean()
205 int idx = findColumnOfType(Byte.class) ; in _updateByte() local
207 if (idx < 0) { in _updateByte()
214 byte newVal = (byte) (row.getByte(idx) + 1) ; in _updateByte()
215 oObj.updateByte(idx, newVal) ; in _updateByte()
216 byte getVal = row.getByte(idx) ; in _updateByte()
234 int idx = findColumnOfType(Short.class) ; in _updateShort() local
236 if (idx < 0) { in _updateShort()
243 short newVal = (short) (row.getShort(idx) + 1) ; in _updateShort()
244 oObj.updateShort(idx, newVal) ; in _updateShort()
245 short getVal = row.getShort(idx) ; in _updateShort()
263 int idx = findColumnOfType(Integer.class) ; in _updateInt() local
265 if (idx < 0) { in _updateInt()
272 int newVal = 1 + row.getInt(idx) ; in _updateInt()
273 oObj.updateInt(idx, newVal) ; in _updateInt()
274 int getVal = row.getInt(idx) ; in _updateInt()
292 int idx = findColumnOfType(Long.class) ; in _updateLong() local
294 if (idx < 0) { in _updateLong()
301 long newVal = 1 + row.getLong(idx) ; in _updateLong()
302 oObj.updateLong(idx, newVal) ; in _updateLong()
303 long getVal = row.getLong(idx) ; in _updateLong()
321 int idx = findColumnOfType(Float.class) ; in _updateFloat() local
323 if (idx < 0) { in _updateFloat()
330 float newVal = (float) (1.1 + row.getFloat(idx)); in _updateFloat()
331 oObj.updateFloat(idx, newVal) ; in _updateFloat()
332 float getVal = row.getFloat(idx) ; in _updateFloat()
350 int idx = findColumnOfType(Double.class) ; in _updateDouble() local
352 if (idx < 0) { in _updateDouble()
359 double newVal = 1.1 + row.getDouble(idx) ; in _updateDouble()
360 oObj.updateDouble(idx, newVal) ; in _updateDouble()
361 double getVal = row.getDouble(idx) ; in _updateDouble()
379 int idx = findColumnOfType(String.class) ; in _updateString() local
381 if (idx < 0) { in _updateString()
388 String newVal = "_" + row.getString(idx) ; in _updateString()
389 oObj.updateString(idx, newVal) ; in _updateString()
390 String getVal = row.getString(idx) ; in _updateString()
410 int idx = findColumnOfType(byte[].class) ; in _updateBytes() local
412 if (idx < 0) { in _updateBytes()
419 byte[] newVal = row.getBytes(idx) ; in _updateBytes()
425 oObj.updateBytes(idx, newVal) ; in _updateBytes()
426 byte[] getVal = row.getBytes(idx) ; in _updateBytes()
444 int idx = findColumnOfType(Date.class) ; in _updateDate() local
446 if (idx < 0) { in _updateDate()
453 Date newVal = row.getDate(idx) ; in _updateDate()
455 oObj.updateDate(idx, newVal) ; in _updateDate()
456 Date getVal = row.getDate(idx) ; in _updateDate()
474 int idx = findColumnOfType(Time.class) ; in _updateTime() local
476 if (idx < 0) { in _updateTime()
483 Time newVal = row.getTime(idx) ; in _updateTime()
485 oObj.updateTime(idx, newVal) ; in _updateTime()
486 Time getVal = row.getTime(idx) ; in _updateTime()
504 int idx = findColumnOfType(DateTime.class) ; in _updateTimestamp() local
506 if (idx < 0) { in _updateTimestamp()
513 DateTime newVal = row.getTimestamp(idx) ; in _updateTimestamp()
515 oObj.updateTimestamp(idx, newVal) ; in _updateTimestamp()
516 DateTime getVal = row.getTimestamp(idx) ; in _updateTimestamp()
535 int idx = findColumnOfType(XDataInputStream.class) ; in _updateBinaryStream() local
537 if (idx < 0) { in _updateBinaryStream()
549 oObj.updateBinaryStream(idx, newVal, 0) ; in _updateBinaryStream()
550 XInputStream getVal = row.getBinaryStream(idx) ; in _updateBinaryStream()
572 int idx = findColumnOfType(XTextInputStream.class) ; in _updateCharacterStream() local
574 if (idx < 0) { in _updateCharacterStream()
586 oObj.updateCharacterStream(idx, newVal, 0) ; in _updateCharacterStream()
587 XInputStream getVal = row.getCharacterStream(idx) ; in _updateCharacterStream()
609 int idx = findColumnOfType(Object[].class) ; in _updateObject() local
611 if (idx < 0) { in _updateObject()
621 oObj.updateObject(idx, newVal) ; in _updateObject()
644 int idx = findColumnOfType(Object[].class) ; in _updateNumericObject() local
646 if (idx < 0) { in _updateNumericObject()
656 oObj.updateNumericObject(idx, newVal, 0) ; in _updateNumericObject()