Home
last modified time | relevance | path

Searched refs:RowIndex (Results 1 – 12 of 12) sorted by relevance

/external/rust/crates/rusqlite/src/
Drow.rs257 pub fn get_unwrap<I: RowIndex, T: FromSql>(&self, idx: I) -> T { in get_unwrap() argument
277 pub fn get<I: RowIndex, T: FromSql>(&self, idx: I) -> Result<T> { in get() argument
320 pub fn get_raw_checked<I: RowIndex>(&self, idx: I) -> Result<ValueRef<'_>> { in get_raw_checked()
344 pub fn get_raw<I: RowIndex>(&self, idx: I) -> ValueRef<'_> { in get_raw()
350 pub trait RowIndex { interface
356 impl RowIndex for usize {
367 impl RowIndex for &'_ str { impl
Dlib.rs80 pub use crate::row::{AndThenRows, Map, MappedRows, Row, RowIndex, Rows};
/external/llvm-project/llvm/lib/DebugInfo/GSYM/
DDwarfTransformer.cpp280 for (uint32_t RowIndex : RowVector) { in convertFunctionLineTable() local
282 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex]; in convertFunctionLineTable()
294 "line table Row[" << RowIndex << "] with address " in convertFunctionLineTable()
304 if (RowIndex != RowVector[0] && Row.Address < PrevRow.Address) { in convertFunctionLineTable()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp667 uint32_t RowIndex = lookupAddress(Address); in getFileLineInfoForAddress() local
668 if (RowIndex == -1U) in getFileLineInfoForAddress()
671 const auto &Row = Rows[RowIndex]; in getFileLineInfoForAddress()
DDWARFContext.cpp518 for (uint32_t RowIndex : RowVector) { in getLineInfoForAddressRange() local
520 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]; in getLineInfoForAddressRange()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFVerifier.cpp750 uint32_t RowIndex = 0; in verifyDebugLineRows() local
758 << "] row[" << RowIndex in verifyDebugLineRows()
762 if (RowIndex > 0) in verifyDebugLineRows()
763 LineTable->Rows[RowIndex - 1].dump(OS); in verifyDebugLineRows()
775 << "][" << RowIndex << "] has invalid file index " << Row.File in verifyDebugLineRows()
787 ++RowIndex; in verifyDebugLineRows()
DDWARFDebugLine.cpp1091 uint32_t RowIndex = lookupAddress(Address); in getFileLineInfoForAddress() local
1092 if (RowIndex == -1U) in getFileLineInfoForAddress()
1095 const auto &Row = Rows[RowIndex]; in getFileLineInfoForAddress()
DDWARFContext.cpp1210 for (uint32_t RowIndex : RowVector) { in getLineInfoForAddressRange() local
1212 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]; in getLineInfoForAddressRange()
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFVerifier.cpp807 uint32_t RowIndex = 0; in verifyDebugLineRows() local
815 << "] row[" << RowIndex in verifyDebugLineRows()
819 if (RowIndex > 0) in verifyDebugLineRows()
820 LineTable->Rows[RowIndex - 1].dump(OS); in verifyDebugLineRows()
832 << "][" << RowIndex << "] has invalid file index " << Row.File in verifyDebugLineRows()
844 ++RowIndex; in verifyDebugLineRows()
DDWARFDebugLine.cpp1403 uint32_t RowIndex = lookupAddress(Address); in getFileLineInfoForAddress() local
1404 if (RowIndex == -1U) in getFileLineInfoForAddress()
1407 const auto &Row = Rows[RowIndex]; in getFileLineInfoForAddress()
DDWARFContext.cpp1278 for (uint32_t RowIndex : RowVector) { in getLineInfoForAddressRange() local
1280 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]; in getLineInfoForAddressRange()
/external/rust/crates/rusqlite/
DChangelog.md35 * The RowIndex type used in Row::get is now publicly exported.
168 * Introduces a `RowIndex` trait allowing columns to be fetched via index (as before) or name (new).