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/core/java/android/database/
DatabaseUtils.java 635 int colIndex = cursor.getColumnIndex(field);
636 if (!cursor.isNull(colIndex)) {
637 values.put(key, cursor.getInt(colIndex));
665 int colIndex = cursor.getColumnIndex(field);
666 if (!cursor.isNull(colIndex)) {
667 Long value = Long.valueOf(cursor.getLong(colIndex));
696 int colIndex = cursor.getColumnIndex(field);
697 if (!cursor.isNull(colIndex)) {
698 values.put(key, cursor.getDouble(colIndex));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTable.cpp 483 unsigned colIndex = colIndexCounter - 1;
484 AccessibilityObject* child = children[colIndex].get();
  /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);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
options.js 340 function getSelectedResults(arr, rowIndex, colIndex) {
341 switch (colIndex) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayer.cpp     [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 528 milliseconds