Lines Matching refs:existing

1369               mirror::Class* existing = table->LookupByDescriptor(klass);
1370 if (existing != nullptr) {
1371 DCHECK_EQ(existing, klass) << PrettyClass(klass);
1597 // Check against existing class roots to make sure they match the ones in the boot image.
1654 // Register dex files, keep track of existing ones that are conflicts.
2509 mirror::Class* existing = InsertClass(descriptor, klass.Get(), hash);
2510 if (existing != nullptr) {
2513 return EnsureResolved(self, descriptor, existing);
3366 mirror::Class* existing = InsertClass(descriptor, h_class.Get(),
3368 CHECK(existing == nullptr) << "InitPrimitiveClass(" << type << ") failed";
3514 mirror::Class* existing = InsertClass(descriptor, new_class.Get(), hash);
3515 if (existing == nullptr) {
3525 return existing;
3570 mirror::Class* existing = class_table->Lookup(descriptor, hash);
3571 if (existing != nullptr) {
3572 return existing;
3580 existing = LookupClassFromBootImage(descriptor);
3581 if (existing != nullptr) {
3582 CHECK_EQ(klass, existing);
3694 mirror::Class* existing = class_table->Lookup(descriptor, hash);
3695 if (existing != nullptr) {
3696 CHECK_EQ(existing, klass) << PrettyClassAndClassLoader(existing) << " != "
4181 mirror::Class* existing = InsertClass(descriptor.c_str(), klass.Get(), hash);
4182 CHECK(existing == nullptr);
4344 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
5194 mirror::Class* existing = table->UpdateClass(descriptor, h_new_class.Get(),
5201 CHECK_EQ(existing, klass.Get());
5207 CHECK_EQ(klass.Get(), existing) << descriptor;
5826 // pre-existing) in the translations map.
6093 // Create a new entry if the existing one is the shared conflict method.
6145 // Place the default conflict method. Note that there may be an existing conflict
6716 // If we are working on a super interface, try extending the existing method array.