/art/compiler/optimizing/ |
D | write_barrier_elimination.cc | 65 const bool inserted = current_write_barriers_.insert({obj, instruction}).second; in VisitInstanceFieldSet() local 66 DCHECK(inserted); in VisitInstanceFieldSet() 91 const bool inserted = current_write_barriers_.insert({cls, instruction}).second; in VisitStaticFieldSet() local 92 DCHECK(inserted); in VisitStaticFieldSet() 119 const bool inserted = current_write_barriers_.insert({arr, instruction}).second; in VisitArraySet() local 120 DCHECK(inserted); in VisitArraySet()
|
D | induction_var_analysis.cc | 280 auto [it, inserted] = in TryVisitNodes() 282 if (!inserted) { in TryVisitNodes()
|
/art/benchmark/ |
D | Android.bp | 40 // comes after the -Wframe-larger-than warnings inserted by art.go 77 // comes after the -Wframe-larger-than warnings inserted by art.go 97 // comes after the -Wframe-larger-than warnings inserted by art.go
|
/art/dex2oat/linker/ |
D | code_info_table_deduper.cc | 90 auto [it, inserted] = dedupe_set_.insert(entry); in Dedupe() 92 if (!inserted) { in Dedupe()
|
D | image_writer.cc | 1427 bool inserted = in RecordNativeRelocations() local 1433 CHECK(inserted) << "Field array " << cur_fields << " already forwarded"; in RecordNativeRelocations() 1463 bool inserted = in RecordNativeRelocations() local 1472 CHECK(inserted) << "Method array " << array << " already forwarded"; in RecordNativeRelocations() 1751 bool inserted = class_table.InsertWithHash(ClassTable::TableSlot(klass, hash), hash).second; in ProcessCollectedClasses() local 1752 DCHECK(inserted) << "Class " << klass->PrettyDescriptor() in ProcessCollectedClasses() 1767 bool inserted = table.InsertWithHash(ClassTable::TableSlot(klass, hash), hash).second; in ProcessCollectedClasses() local 1768 DCHECK(inserted) << "Boot image class " << klass->PrettyDescriptor() in ProcessCollectedClasses() 2195 bool inserted = table.insert(GcRoot<mirror::String>(string->AsString())).second; in FinalizeInternTables() local 2196 DCHECK(inserted) << "String already inserted: " << string->AsString()->ToModifiedUtf8(); in FinalizeInternTables() [all …]
|
D | oat_writer.cc | 1365 auto [it, inserted] = dedupe_code_info_.insert(std::make_pair(map.data(), offset)); in VisitMethod() 1366 DCHECK_EQ(inserted, it->second == offset); in VisitMethod() 1367 if (inserted) { in VisitMethod()
|
/art/runtime/gc/collector/ |
D | mark_compact-inl.h | 284 bool inserted; in VerifyRootSingleUpdate() local 287 inserted = updated_roots_->insert(root).second; in VerifyRootSingleUpdate() 289 if (!inserted) { in VerifyRootSingleUpdate() 293 CHECK(inserted) << "root=" << root << " old_ref=" << old_ref in VerifyRootSingleUpdate()
|
/art/libartbase/base/ |
D | variant_map.h | 298 bool inserted = storage_map_.insert({key.Clone(), new_value}).second; in Set() local 299 DCHECK(inserted); // ensure key.Clone() does not leak memory. in Set()
|
D | hash_set_test.cc | 463 bool inserted = hash_set.insert(index).second; in TEST_F() local 464 ASSERT_EQ(index != duplicateSecondIndex, inserted) << index; in TEST_F()
|
/art/runtime/ |
D | transaction.cc | 431 bool inserted = container.insert(std::move(node)).inserted; in UpdateKeys() local 432 CHECK(inserted); in UpdateKeys()
|
D | runtime_image.cc | 1598 bool inserted = in CopyClass() local 1600 DCHECK(inserted) << "Class " << cls->PrettyDescriptor() in CopyClass()
|
D | class_linker.cc | 4265 bool inserted = dex_caches_.emplace(&dex_file, std::move(data)).second; in RegisterDexFileLocked() local 4266 CHECK(inserted); in RegisterDexFileLocked() 8609 auto [it, inserted] = super_vtable_signatures.InsertWithHash(k, super_hash); in AssignVTableIndexes() 8610 DCHECK(inserted || super_vtable_accessor.GetVTableEntry(*it) == super_method); in AssignVTableIndexes() 8628 auto [it, inserted] = copied_method_records_.InsertWithHash( in AssignVTableIndexes() 8632 } else if (inserted) { in AssignVTableIndexes() 8640 if (inserted) { in AssignVTableIndexes()
|
/art/openjdkjvmti/ |
D | jvmti_weak_table-inl.h | 244 DCHECK(ret.inserted); in UpdateTableWith()
|
/art/build/ |
D | Android.bp | 302 // comes after the -Wframe-larger-than warnings inserted by art.go
|
/art/tools/checker/ |
D | README | 40 Actual regex patterns can be inserted enclosed in '{{' and '}}' brackets. If
|
/art/test/510-checker-try-catch/smali/ |
D | Builder.smali | 310 # Test that only one TryBoundary is inserted when an edge connects two different 926 # Test that a TryBoundary is inserted between a Throw instruction and the exit
|
/art/test/ |
D | Android.bp | 49 // comes after the -Wframe-larger-than warnings inserted by art.go
|