Home
last modified time | relevance | path

Searched refs:column_type (Results 1 – 13 of 13) sorted by relevance

/external/webrtc/tools/python_charts/webrtc/
Ddata_helper.py83 column_type = self.table_description[field_name][0]
85 result_table_description[column_name] = (column_type, column_description)
/external/javasqlite/src/main/java/SQLite/
DStmt.java212 public native int column_type(int col) throws SQLite.Exception; in column_type() method in Stmt
228 switch (column_type(col)) { in column()
/external/mesa3d/src/glsl/
Dir_constant_expression.cpp1086 const glsl_type *const column_type = array->type->column_type(); in constant_expression_value() local
1091 const unsigned mat_idx = column * column_type->vector_elements; in constant_expression_value()
1095 switch (column_type->base_type) { in constant_expression_value()
1098 for (unsigned i = 0; i < column_type->vector_elements; i++) in constant_expression_value()
1104 for (unsigned i = 0; i < column_type->vector_elements; i++) in constant_expression_value()
1114 return new(ctx) ir_constant(column_type, &data); in constant_expression_value()
Dglsl_types.h433 const glsl_type *column_type() const in column_type() function
Dast_function.cpp539 const int c = component / src->type->column_type()->vector_elements; in dereference_component()
540 const int r = component % src->type->column_type()->vector_elements; in dereference_component()
544 col->type = src->type->column_type(); in dereference_component()
1022 const glsl_type *const col_type = var->type->column_type(); in emit_inline_matrix_constructor()
Dopt_array_splitting.cpp373 subtype = type->column_type(); in optimize_split_arrays()
Dast_to_hir.cpp293 if (type_a->row_type() == type_b->column_type()) { in arithmetic_result_type()
301 type_a->column_type()->vector_elements, in arithmetic_result_type()
318 type_a->column_type()->vector_elements, in arithmetic_result_type()
332 if (type_a == type_b->column_type()) { in arithmetic_result_type()
Dir.cpp1232 type = vt->column_type(); in set_array()
/external/sqlite/dist/orig/
Dsqlite3ext.h75 int (*column_type)(sqlite3_stmt*,int iCol); member
332 #define sqlite3_column_type sqlite3_api->column_type
Dsqlite3.c104122 int (*column_type)(sqlite3_stmt*,int iCol);
104379 #define sqlite3_column_type sqlite3_api->column_type
/external/sqlite/dist/
Dsqlite3ext.h75 int (*column_type)(sqlite3_stmt*,int iCol); member
332 #define sqlite3_column_type sqlite3_api->column_type
Dsqlite3.c104140 int (*column_type)(sqlite3_stmt*,int iCol);
104397 #define sqlite3_column_type sqlite3_api->column_type
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_vec4_visitor.cpp467 const glsl_type *column = type->column_type(); in setup_uniform_values()