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

  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
umatrix.h 25 typedef tuple<NY,T> column_type; typedef in class:ustl::matrix
48 inline column_type column (size_type c) const;
67 inline typename matrix<NX,NY,T>::column_type matrix<NX,NY,T>::column (size_type c) const
69 column_type result;
  /dalvik/libcore/sql/src/main/java/SQLite/
Stmt.java 212 public native int column_type(int col) throws SQLite.Exception; method in class:Stmt
228 switch (column_type(col)) {
  /dalvik/libcore/sql/src/test/java/tests/SQLite/
StmtTest.java 987 * @tests {@link Stmt#column_type(int)}
992 method = "column_type",
1004 st.column_type(100);
1020 assertEquals(Constants.SQLITE3_TEXT, st.column_type(23)); // ok TEXT
1021 assertEquals(Constants.SQLITE3_TEXT, st.column_type(13)); // CHAR(20)
1023 assertEquals(Constants.SQLITE_FLOAT, st.column_type(8));
1024 assertEquals(Constants.SQLITE_FLOAT, st.column_type(9));
1025 assertEquals(Constants.SQLITE_FLOAT, st.column_type(10)); // FLOAT
1029 Constants.SQLITE_INTEGER, st.column_type(i));
1032 assertEquals(Constants.SQLITE_NULL, st.column_type(28))
    [all...]
  /external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3ext.h 69 int (*column_type)(sqlite3_stmt*,int iCol); member in struct:sqlite3_api_routines
202 #define sqlite3_column_type sqlite3_api->column_type

Completed in 1351 milliseconds