dedupe_set.h | 44 const HashedInKey* in_key; // Valid if store_ptr == nullptr. member in union:art::DedupeSet::HashedKey::__anon27 51 HashType a_hash = (a.store_ptr != nullptr) ? a.store_hash : a.in_key->first; 52 HashType b_hash = (b.store_ptr != nullptr) ? b.store_hash : b.in_key->first; 61 b.in_key->second->begin(), b.in_key->second->end()); 63 return std::lexicographical_compare(a.in_key->second->begin(), a.in_key->second->end(), 66 return std::lexicographical_compare(a.in_key->second->begin(), a.in_key->second->end(), 67 b.in_key->second->begin(), b.in_key->second->end()) [all...] |