Home | History | Annotate | Download | only in runtime

Lines Matching defs:TableSlot

38   TableSlot slot(klass);
50 TableSlot slot(klass);
81 *existing_it = TableSlot(klass, hash);
88 for (const TableSlot& root : set) {
137 TableSlot slot(klass);
150 const uint32_t hash = TableSlot::HashDescriptor(klass);
152 classes_.back().InsertWithHash(TableSlot(klass, hash), hash);
162 for (const TableSlot& slot : class_set) {
169 const uint32_t hash = TableSlot::HashDescriptor(klass);
170 classes_.back().InsertWithHash(TableSlot(klass, hash), hash);
175 classes_.back().InsertWithHash(TableSlot(klass, hash), hash);
191 uint32_t ClassTable::ClassDescriptorHashEquals::operator()(const TableSlot& slot)
197 bool ClassTable::ClassDescriptorHashEquals::operator()(const TableSlot& a,
198 const TableSlot& b) const {
208 bool ClassTable::ClassDescriptorHashEquals::operator()(const TableSlot& a,
262 for (const TableSlot& root : class_set) {
293 ClassTable::TableSlot::TableSlot(ObjPtr<mirror::Class> klass)
294 : TableSlot(klass, HashDescriptor(klass)) {}
296 uint32_t ClassTable::TableSlot::HashDescriptor(ObjPtr<mirror::Class> klass) {