HomeSort by relevance Sort by last modified time
    Searched refs:colIndex (Results 1 - 15 of 15) sorted by null

  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java 1001 public void updateNull(int colIndex) throws SQLException {
1003 if (tr == null || colIndex < 1 || colIndex > tr.ncolumns) {
1004 throw new SQLException("column " + colIndex + " not found");
1007 rowbuf[colIndex - 1] = null;
1010 public void updateBoolean(int colIndex, boolean b) throws SQLException {
1011 updateString(colIndex, b ? "1" : "0");
1014 public void updateByte(int colIndex, byte b) throws SQLException {
1018 public void updateShort(int colIndex, short b) throws SQLException {
1020 if (tr == null || colIndex < 1 || colIndex > tr.ncolumns)
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 247 int colIndex = cursor.getColumnIndexOrThrow(colName);
248 if (!cursor.isNull(colIndex)) {
249 retValue = cursor.getFloat(colIndex);
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
ProxyServer.java 308 int colIndex = line.indexOf(":");
309 if (colIndex != -1) {
310 String headerName = line.substring(0, colIndex).trim();
  /frameworks/base/core/java/android/database/
DatabaseUtils.java 655 int colIndex = cursor.getColumnIndex(field);
656 if (!cursor.isNull(colIndex)) {
657 values.put(key, cursor.getInt(colIndex));
685 int colIndex = cursor.getColumnIndex(field);
686 if (!cursor.isNull(colIndex)) {
687 Long value = Long.valueOf(cursor.getLong(colIndex));
716 int colIndex = cursor.getColumnIndex(field);
717 if (!cursor.isNull(colIndex)) {
718 values.put(key, cursor.getDouble(colIndex));
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
SimplexTableau.java 376 int colIndex = columnLabels.indexOf("x" + i);
377 if (colIndex < 0) {
381 Integer basicRow = getBasicRow(colIndex);
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerFunctionalTest.java 136 int colIndex = cursor.getColumnIndex(DownloadManager.COLUMN_LOCAL_FILENAME);
137 String fileName = cursor.getString(colIndex);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContent.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface_3.6.1.M20100825-0800.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-jface-3.6.2.jar 
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.jface_3.6.2.M20110210-1200.jar 
org.eclipse.jface_3.4.2.M20090107-0800.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 

Completed in 472 milliseconds