Home
last modified time | relevance | path

Searched refs:column_double (Results 1 – 8 of 8) sorted by relevance

/external/javasqlite/src/main/java/SQLite/
DStmt.java191 public native double column_double(int col) throws SQLite.Exception; in column_double() method in Stmt
232 return new Double(column_double(col)); in column()
/external/webkit/WebKitLibraries/WebCoreSQLite3/
Dsqlite3ext.h64 double (*column_double)(sqlite3_stmt*,int iCol); member
239 #define sqlite3_column_double sqlite3_api->column_double
/external/sqlite/dist/
Dsqlite3ext.h64 double (*column_double)(sqlite3_stmt*,int iCol); member
282 #define sqlite3_column_double sqlite3_api->column_double
Dsqlite3.c91050 double (*column_double)(sqlite3_stmt*,int iCol);
91268 #define sqlite3_column_double sqlite3_api->column_double
/external/sqlite/dist/orig/
Dsqlite3ext.h64 double (*column_double)(sqlite3_stmt*,int iCol); member
282 #define sqlite3_column_double sqlite3_api->column_double
Dsqlite3.c91037 double (*column_double)(sqlite3_stmt*,int iCol);
91255 #define sqlite3_column_double sqlite3_api->column_double
/external/chromium/chrome/common/
Dsqlite_utils.h328 double column_double(int index);
Dsqlite_utils.cc440 double SQLStatement::column_double(int index) { in column_double() function in SQLStatement