Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dwrite_barrier_elimination.cc65 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()
Dinduction_var_analysis.cc280 auto [it, inserted] = in TryVisitNodes()
282 if (!inserted) { in TryVisitNodes()
/art/benchmark/
DAndroid.bp40 // 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/
Dcode_info_table_deduper.cc90 auto [it, inserted] = dedupe_set_.insert(entry); in Dedupe()
92 if (!inserted) { in Dedupe()
Dimage_writer.cc1427 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 …]
Doat_writer.cc1365 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/
Dmark_compact-inl.h284 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/
Dvariant_map.h298 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()
Dhash_set_test.cc463 bool inserted = hash_set.insert(index).second; in TEST_F() local
464 ASSERT_EQ(index != duplicateSecondIndex, inserted) << index; in TEST_F()
/art/runtime/
Dtransaction.cc431 bool inserted = container.insert(std::move(node)).inserted; in UpdateKeys() local
432 CHECK(inserted); in UpdateKeys()
Druntime_image.cc1598 bool inserted = in CopyClass() local
1600 DCHECK(inserted) << "Class " << cls->PrettyDescriptor() in CopyClass()
Dclass_linker.cc4265 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/
Djvmti_weak_table-inl.h244 DCHECK(ret.inserted); in UpdateTableWith()
/art/build/
DAndroid.bp302 // comes after the -Wframe-larger-than warnings inserted by art.go
/art/tools/checker/
DREADME40 Actual regex patterns can be inserted enclosed in '{{' and '}}' brackets. If
/art/test/510-checker-try-catch/smali/
DBuilder.smali310 # 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/
DAndroid.bp49 // comes after the -Wframe-larger-than warnings inserted by art.go