HomeSort by relevance Sort by last modified time
    Searched refs:colIndex (Results 1 - 10 of 10) 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...]
  /external/webkit/Source/WebCore/html/
DataGridColumnList.cpp 96 size_t colIndex = m_columns.find(col);
97 if (colIndex == notFound)
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTable.cpp 318 for (unsigned colIndex = 0; colIndex < numCols; ++colIndex) {
320 RenderTableCell* cell = tableSection->primaryCellAt(rowIndex, colIndex);
  /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/core/java/android/database/
DatabaseUtils.java 639 int colIndex = cursor.getColumnIndex(field);
640 if (!cursor.isNull(colIndex)) {
641 values.put(key, cursor.getInt(colIndex));
669 int colIndex = cursor.getColumnIndex(field);
670 if (!cursor.isNull(colIndex)) {
671 Long value = Long.valueOf(cursor.getLong(colIndex));
700 int colIndex = cursor.getColumnIndex(field);
701 if (!cursor.isNull(colIndex)) {
702 values.put(key, cursor.getDouble(colIndex));
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerFunctionalTest.java 139 int colIndex = cursor.getColumnIndex(DownloadManager.COLUMN_LOCAL_FILENAME);
140 String fileName = cursor.getString(colIndex);
  /external/webkit/Source/WebCore/rendering/
RenderLayer.cpp     [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 6918 milliseconds