Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file_types.h30 class DexIndex {
34 constexpr DexIndex() : index_(std::numeric_limits<decltype(index_)>::max()) {} in DexIndex() function
35 explicit constexpr DexIndex(T idx) : index_(idx) {} in DexIndex() function
40 static constexpr DexIndex Invalid() { in Invalid()
41 return DexIndex(std::numeric_limits<decltype(index_)>::max()); in Invalid()
43 bool operator==(const DexIndex& other) const {
46 bool operator!=(const DexIndex& other) const {
49 bool operator<(const DexIndex& other) const {
52 bool operator<=(const DexIndex& other) const {
55 bool operator>(const DexIndex& other) const {
[all …]