OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:column_double
(Results
1 - 5
of
5
) sorted by null
/external/javasqlite/src/main/java/SQLite/
Stmt.java
191
public native double
column_double
(int col) throws SQLite.Exception;
method in class:Stmt
232
return new Double(
column_double
(col));
/external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3ext.h
64
double (*
column_double
)(sqlite3_stmt*,int iCol);
member in struct:sqlite3_api_routines
239
#define sqlite3_column_double sqlite3_api->
column_double
/external/chromium/chrome/common/
sqlite_utils.h
328
double
column_double
(int index);
sqlite_utils.cc
440
double SQLStatement::
column_double
(int index) {
function in class:SQLStatement
/libcore/luni/src/test/java/libcore/sqlite/
OldStmtTest.java
574
doubleColumn = st.
column_double
(0);
587
st.
column_double
(0);
Completed in 250 milliseconds