/external/chromium_org/sql/ |
recovery.cc | 363 const std::string column_type(s.ColumnString(2)); 391 if (column_type.find("INT") != std::string::npos) { 397 } else if (column_type.find("CHAR") != std::string::npos || 398 column_type.find("TEXT") != std::string::npos) { 400 } else if (column_type == "BLOB") { 402 } else if (column_type.find("DOUB") != std::string::npos) { 411 NOTREACHED() << " Unsupported type " << column_type;
|
statement.cc | 184 std::string column_type(sqlite3_column_decltype(ref_->stmt(), col)); 185 StringToLowerASCII(&column_type); 187 if (column_type == "integer") 189 else if (column_type == "float") 191 else if (column_type == "text") 193 else if (column_type == "blob")
|
/external/javasqlite/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)) {
|
/external/chromium/chrome/common/ |
sqlite_utils.h | 322 int column_type(int index); 386 const char* column_type); 390 const char* column_type) { 391 return DoesSqliteColumnExist(db, NULL, table_name, column_name, column_type);
|
sqlite_utils.cc | 127 const char* column_type) { 145 if (column_type && column_type[0]) 146 return !s.column_string(2).compare(column_type); 394 int SQLStatement::column_type(int index) { function in class:SQLStatement
|
/libcore/luni/src/test/java/libcore/sqlite/ |
OldStmtTest.java | 632 st.column_type(100); 648 assertEquals(Constants.SQLITE3_TEXT, st.column_type(23)); // ok TEXT 649 assertEquals(Constants.SQLITE3_TEXT, st.column_type(13)); // CHAR(20) 651 assertEquals(Constants.SQLITE_FLOAT, st.column_type(8)); 652 assertEquals(Constants.SQLITE_FLOAT, st.column_type(9)); 653 assertEquals(Constants.SQLITE_FLOAT, st.column_type(10)); // FLOAT 657 Constants.SQLITE_INTEGER, st.column_type(i)); 660 assertEquals(Constants.SQLITE_NULL, st.column_type(28)); 661 assertEquals(Constants.SQLITE_NULL, st.column_type(29)); 665 assertEquals(Constants.SQLITE_INTEGER, st.column_type(12)) [all...] |
/external/chromium/chrome/browser/chromeos/input_method/ |
candidate_window.cc | 649 const views::GridLayout::SizeType column_type = local 658 0, column_type, shortcut_column_width, 0); 663 0, column_type, candidate_column_width, 0); 668 0, column_type, annotation_column_width, 0); [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
glsl_types.h | 433 const glsl_type *column_type() const function in struct:glsl_type
|
opt_array_splitting.cpp | 373 subtype = type->column_type();
|
ir_constant_expression.cpp | 1086 const glsl_type *const column_type = array->type->column_type(); local 1091 const unsigned mat_idx = column * column_type->vector_elements; 1095 switch (column_type->base_type) { 1098 for (unsigned i = 0; i < column_type->vector_elements; i++) 1104 for (unsigned i = 0; i < column_type->vector_elements; i++) 1114 return new(ctx) ir_constant(column_type, &data); [all...] |
ast_function.cpp | 539 const int c = component / src->type->column_type()->vector_elements; 540 const int r = component % src->type->column_type()->vector_elements; 544 col->type = src->type->column_type(); [all...] |
ast_to_hir.cpp | 293 if (type_a->row_type() == type_b->column_type()) { 301 type_a->column_type()->vector_elements, 318 type_a->column_type()->vector_elements, 332 if (type_a == type_b->column_type()) { [all...] |
ir.cpp | 1232 type = vt->column_type(); [all...] |
/external/mesa3d/src/glsl/ |
glsl_types.h | 433 const glsl_type *column_type() const function in struct:glsl_type
|
opt_array_splitting.cpp | 373 subtype = type->column_type();
|
ir_constant_expression.cpp | 1086 const glsl_type *const column_type = array->type->column_type(); local 1091 const unsigned mat_idx = column * column_type->vector_elements; 1095 switch (column_type->base_type) { 1098 for (unsigned i = 0; i < column_type->vector_elements; i++) 1104 for (unsigned i = 0; i < column_type->vector_elements; i++) 1114 return new(ctx) ir_constant(column_type, &data); [all...] |
ast_function.cpp | 539 const int c = component / src->type->column_type()->vector_elements; 540 const int r = component % src->type->column_type()->vector_elements; 544 col->type = src->type->column_type(); [all...] |
ast_to_hir.cpp | 293 if (type_a->row_type() == type_b->column_type()) { 301 type_a->column_type()->vector_elements, 318 type_a->column_type()->vector_elements, 332 if (type_a == type_b->column_type()) { [all...] |
ir.cpp | 1232 type = vt->column_type(); [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
sqlite3ext.h | 73 int (*column_type)(sqlite3_stmt*,int iCol); member in struct:sqlite3_api_routines 269 #define sqlite3_column_type sqlite3_api->column_type
|
/external/sqlite/dist/orig/ |
sqlite3ext.h | 75 int (*column_type)(sqlite3_stmt*,int iCol); member in struct:sqlite3_api_routines 293 #define sqlite3_column_type sqlite3_api->column_type
|
/external/sqlite/dist/ |
sqlite3ext.h | 75 int (*column_type)(sqlite3_stmt*,int iCol); member in struct:sqlite3_api_routines 293 #define sqlite3_column_type sqlite3_api->column_type
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
candidate_window_view.cc | 376 const views::GridLayout::SizeType column_type = local 385 0, column_type, shortcut_column_width, 0); 397 0, column_type, annotation_column_width, 0); [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_vec4_visitor.cpp | 467 const glsl_type *column = type->column_type(); [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_vec4_visitor.cpp | 467 const glsl_type *column = type->column_type(); [all...] |