Home
last modified time | relevance | path

Searched refs:column_index (Results 1 – 15 of 15) sorted by relevance

/external/rust/crates/rusqlite/src/
Dcolumn.rs75 pub fn column_index(&self, name: &str) -> Result<usize> { in column_index() method
122 pub fn column_index(&self, name: &str) -> Option<Result<usize>> { in column_index() method
123 self.stmt.map(|stmt| stmt.column_index(name)) in column_index()
150 pub fn column_index(&self, name: &str) -> Result<usize> { in column_index() method
151 self.stmt.column_index(name) in column_index()
Drow.rs370 stmt.column_index(*self) in idx()
/external/tensorflow/tensorflow/core/kernels/data/experimental/sql/
Dsqlite_query_connection.cc84 const DataType& data_type, int column_index, Tensor* tensor) { in FillTensorWithResultSetEntry() argument
87 tensor->scalar<T>()() = static_cast<T>(stmt_.M(column_index)); \ in FillTensorWithResultSetEntry()
106 tensor->scalar<bool>()() = stmt_.ColumnInt(column_index) != 0; in FillTensorWithResultSetEntry()
Dsqlite_query_connection.h44 void FillTensorWithResultSetEntry(const DataType& data_type, int column_index,
/external/google-fruit/extras/benchmark/
Dformat_bench_results.py78 max_content_length_by_column = [max([len(str(row[column_index])) for row in table_data])
79 for column_index in range(len(table_data[0]))]
83 for column_index in range(len(row)):
84 value = str(row[column_index])
86 table_cell_format = '%%%ss' % max_content_length_by_column[column_index]
92 + '-|-'.join(['-' * max_content_length_by_column[column_index]
93 for column_index in range(len(row))])
/external/rust/crates/codespan-reporting/src/
Dfiles.rs149 let column_index = column_index(source.as_ref(), line_range, byte_index); in column_number() localVariable
151 Ok(column_index + 1) in column_number()
206 pub fn column_index(source: &str, line_range: Range<usize>, byte_index: usize) -> usize { in column_index() function
/external/libgav1/libgav1/src/tile/
Dtile.cc773 for (int column4x4 = column4x4_start_, column_index = 0; in ThreadedParseAndDecode() local
775 column4x4 += block_width4x4, ++column_index) { in ThreadedParseAndDecode()
784 threading_.sb_state[row_index][column_index] = kSuperBlockStateParsed; in ThreadedParseAndDecode()
786 if (CanDecode(row_index, column_index)) { in ThreadedParseAndDecode()
788 threading_.sb_state[row_index][column_index] = in ThreadedParseAndDecode()
792 [this, row_index, column_index, block_width4x4]() { in ThreadedParseAndDecode()
793 DecodeSuperBlock(row_index, column_index, block_width4x4); in ThreadedParseAndDecode()
819 bool Tile::CanDecode(int row_index, int column_index) const { in CanDecode()
821 assert(column_index >= 0); in CanDecode()
829 if (row_index >= superblock_rows_ || column_index >= superblock_columns_ || in CanDecode()
[all …]
/external/autotest/frontend/tko/
Dcsv_encoder.py39 row_index, column_index = group['header_indices']
40 return row_index * num_columns + column_index
/external/mesa3d/src/imgui/
Dimgui.cpp8210 static float GetDraggedColumnOffset(ImGuiColumnsSet* columns, int column_index) in GetDraggedColumnOffset() argument
8216 IM_ASSERT(column_index > 0); // We are not supposed to drag column 0. in GetDraggedColumnOffset()
8217 IM_ASSERT(g.ActiveId == columns->ID + ImGuiID(column_index)); in GetDraggedColumnOffset()
8220 x = ImMax(x, ImGui::GetColumnOffset(column_index - 1) + g.Style.ColumnsMinSpacing); in GetDraggedColumnOffset()
8222 x = ImMin(x, ImGui::GetColumnOffset(column_index + 1) - g.Style.ColumnsMinSpacing); in GetDraggedColumnOffset()
8227 float ImGui::GetColumnOffset(int column_index) in GetColumnOffset() argument
8233 if (column_index < 0) in GetColumnOffset()
8234 column_index = columns->Current; in GetColumnOffset()
8235 IM_ASSERT(column_index < columns->Columns.Size); in GetColumnOffset()
8237 const float t = columns->Columns[column_index].OffsetNorm; in GetColumnOffset()
[all …]
Dimgui.h559 …IMGUI_API float GetColumnWidth(int column_index = -1); // get…
560 …IMGUI_API void SetColumnWidth(int column_index, float width); // set…
561 …IMGUI_API float GetColumnOffset(int column_index = -1); // get…
562 …IMGUI_API void SetColumnOffset(int column_index, float offset_x); // set…
Dimgui_internal.h1425 IMGUI_API void PushColumnClipRect(int column_index = -1);
/external/python/cpython3/Lib/
Duuid.py480 column_index = keywords.index(heading)
488 word = words[column_index]
/external/libgav1/libgav1/src/
Dtile.h269 bool CanDecode(int row_index, int column_index) const;
279 void DecodeSuperBlock(int row_index, int column_index, int block_width4x4);
/external/rust/crates/rusqlite/
DChangelog.md18 * Make `Statement::column_index` case insensitive (#330).
/external/deqp/external/openglcts/modules/gl/
Dgl4cShadingLanguage420PackTests.cpp14751 const GLchar* column_index = 0; in getVectorValues() local
14769 column_index = "0"; in getVectorValues()
14772 column_index = "1"; in getVectorValues()
14775 column_index = "2"; in getVectorValues()
14778 column_index = "3"; in getVectorValues()
14784 Utils::replaceAllTokens("COLUMN", column_index, initializer); in getVectorValues()