Searched refs:BitTableRow (Results 1 – 2 of 2) sorted by relevance
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | bit_table.h | 74 class BitTableRow : public std::iterator<std::random_access_iterator_tag, Accessor, int32_t, Access… 81 using Reversed = BitTableRow<NumColumns, Accessor, !reverse_iteration>; 83 BitTableRow() = default; 84 BitTableRow(const BitTableType *table, int row_index) : table_(table), row_index_(row_index) {} in BitTableRow() function 85 explicit BitTableRow(Reversed *rhs) : table_(rhs->table_), row_index_(rhs->row_index_) {} in BitTableRow() function 125 bool operator==(const BitTableRow &rhs) const 130 bool operator!=(const BitTableRow &rhs) const 135 ~BitTableRow() = default; 137 DEFAULT_COPY_SEMANTIC(BitTableRow); 138 DEFAULT_NOEXCEPT_MOVE_SEMANTIC(BitTableRow); [all …]
|
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | bit_table_test.cpp | 162 class TestAccessor : public BitTableRow<2, TestAccessor> { 164 using Base = BitTableRow<2, TestAccessor>;
|