/art/tools/veridex/ |
D | resolver.cc | 31 auto existing = type_map_.find(name); in Run() local 33 if (existing != type_map_.end()) { in Run() 35 type_infos_[type_idx] = *existing->second; in Run() 80 auto existing = type_map_.find(name); in GetVeriClass() local 81 if (existing == type_map_.end()) { in GetVeriClass() 91 existing = type_map_.find(klass_name); in GetVeriClass() 92 if (existing == type_map_.end()) { in GetVeriClass() 98 existing->second->GetKind(), last_array + 1, existing->second->GetClassDef()); in GetVeriClass() 105 cls = existing->second; in GetVeriClass()
|
/art/libartbase/base/ |
D | bit_vector.cc | 166 uint32_t existing = storage_[idx]; in Union() local 167 uint32_t update = existing | src->GetRawStorageWord(idx); in Union() 168 if (existing != update) { in Union() 201 uint32_t existing = storage_[idx]; in UnionIfNotIn() local 202 uint32_t update = existing | in UnionIfNotIn() 204 if (existing != update) { in UnionIfNotIn() 211 uint32_t existing = storage_[idx]; in UnionIfNotIn() local 212 uint32_t update = existing | union_with->GetRawStorageWord(idx); in UnionIfNotIn() 213 if (existing != update) { in UnionIfNotIn()
|
/art/test/142-classloader2/src/ |
D | Main.java | 75 VerifyError existing = null; in main() local 83 existing = e; in main() 93 if (e == existing) { in main()
|
/art/cmdline/ |
D | cmdline_types.h | 776 Result ParseAndAppend(const std::string& option, ProfileSaverOptions& existing) { 780 existing.enabled_ = true; 785 existing.profile_boot_class_path_ = true; 790 existing.profile_aot_code_ = true; 795 existing.wait_for_jit_notifications_to_save_ = false; 804 return ParseInto(existing, 810 return ParseInto(existing, 816 return ParseInto(existing, 822 return ParseInto(existing, 828 return ParseInto(existing, [all …]
|
/art/runtime/jit/ |
D | profiling_info.cc | 86 mirror::Class* existing = cache->classes_[i].Read<kWithoutReadBarrier>(); in AddInvokeInfo() local 87 mirror::Class* marked = ReadBarrier::IsMarked(existing); in AddInvokeInfo() 96 GcRoot<mirror::Class> expected_root(existing); in AddInvokeInfo()
|
/art/runtime/ |
D | class_table.cc | 56 const ObjPtr<mirror::Class> existing = existing_it->Read(); in UpdateClass() local 57 CHECK_NE(existing, klass) << descriptor; in UpdateClass() 58 CHECK(!existing->IsResolved()) << descriptor; in UpdateClass() 65 return existing; in UpdateClass()
|
D | oat_file_manager.cc | 84 for (const std::unique_ptr<const OatFile>& existing : oat_files_) { in RegisterOatFile() local 85 CHECK_NE(oat_file.get(), existing.get()) << oat_file->GetLocation(); in RegisterOatFile() 88 CHECK_NE(oat_file->Begin(), existing->Begin()) << "Oat file already mapped at that location"; in RegisterOatFile()
|
D | class_linker.cc | 1632 ObjPtr<mirror::String> existing = intern_table->LookupWeakLocked(string); in HandleAppImageStrings() local 1633 if (existing == nullptr) { in HandleAppImageStrings() 1634 existing = intern_table->LookupStrongLocked(string); in HandleAppImageStrings() 1636 if (existing != nullptr) { in HandleAppImageStrings() 1637 intern_remap.Put(string.Ptr(), existing.Ptr()); in HandleAppImageStrings() 1649 ObjPtr<mirror::String> existing = root.Read(); in HandleAppImageStrings() 1650 intern_remap.Put(it->Read(), existing.Ptr()); in HandleAppImageStrings() 2532 ObjPtr<mirror::Class> existing = InsertClass(descriptor, array_class, hash); in FinishCoreArrayClassSetup() local 2533 CHECK(existing == nullptr); in FinishCoreArrayClassSetup() 3216 ObjPtr<mirror::Class> existing = InsertClass(descriptor, klass.Get(), hash); in DefineClass() local [all …]
|
/art/test/142-classloader2/ |
D | expected-stdout.txt | 4 Caught existing VerifyError.
|
/art/test/1964-add-to-dex-classloader-file/ |
D | info.txt | 1 Tests we can add dex-file buffers to an existing classloader and the old classes can see them.
|
/art/test/1963-add-to-dex-classloader-in-memory/ |
D | info.txt | 1 Tests we can add dex-file buffers to an existing classloader and the old classes can see them.
|
/art/compiler/optimizing/ |
D | gvn.cc | 104 HInstruction* existing = node->GetInstruction(); in Lookup() local 105 if (existing->Equals(instruction)) { in Lookup() 106 return existing; in Lookup() 506 HInstruction* existing = set->Lookup(current); in VisitBasicBlock() local 507 if (existing != nullptr) { in VisitBasicBlock() 512 current->ReplaceWith(existing); in VisitBasicBlock()
|
D | ssa_liveness_analysis.cc | 365 LiveInterval* existing = GetParent()->GetSiblingAt(position); in FindFirstRegisterHint() local 366 if (existing != nullptr in FindFirstRegisterHint() 367 && existing->HasRegister() in FindFirstRegisterHint() 370 && (free_until[existing->GetRegister()] >= next_register_use)) { in FindFirstRegisterHint() 371 return existing->GetRegister(); in FindFirstRegisterHint()
|
D | block_builder.cc | 318 auto existing = catch_blocks.find(address); in InsertTryBoundaryBlocks() local 319 if (existing != catch_blocks.end()) { in InsertTryBoundaryBlocks() 321 TryCatchInformation* info = existing->second->GetTryCatchInformation(); in InsertTryBoundaryBlocks()
|
D | register_allocator_linear_scan.cc | 1015 LiveInterval* existing = unhandled_->back(); in AllocateBlockedReg() local 1016 DCHECK(existing->IsHighInterval()); in AllocateBlockedReg() 1017 DCHECK_EQ(existing->GetLowInterval(), current); in AllocateBlockedReg()
|
/art/test/800-smali/smali/ |
D | b_22777307.smali | 11 # Cloneable was chosen because it's an already existing interface.
|
/art/tools/ |
D | host_bcp.sh | 25 and existing \$ANDROID_PRODUCT_OUT/apex/com.android.art* paths.
|
/art/runtime/entrypoints/ |
D | entrypoint_utils.cc | 331 ArtMethod* existing = atomic_entry->load(std::memory_order_acquire); in MaybeUpdateBssMethodEntry() local 332 CHECK(existing->IsRuntimeMethod() || existing == callee); in MaybeUpdateBssMethodEntry()
|
/art/runtime/mirror/ |
D | class_ext-inl.h | 40 ObjPtr<Object> existing( in EnsureJniIdsArrayPresent() 42 if (!existing.IsNull()) { in EnsureJniIdsArrayPresent()
|
/art/dexlayout/ |
D | compact_dex_writer.cc | 223 auto existing = dedupe_map_.emplace(range, item_offset); in Dedupe() local 224 if (!existing.second) { in Dedupe() 226 return existing.first->second; in Dedupe()
|
D | dex_ir_builder.cc | 801 auto existing = code_items_map_.find(offsets_pair); in DedupeOrCreateCodeItem() local 802 if (existing != code_items_map_.end()) { in DedupeOrCreateCodeItem() 803 return existing->second; in DedupeOrCreateCodeItem()
|
/art/cmdline/detail/ |
D | cmdline_parse_argument_detail.h | 502 TArg& existing = load_argument_(); in ParseArgumentSingle() local 503 CmdlineParseResult<TArg> result = type_parser.ParseAndAppend(argument, existing); in ParseArgumentSingle()
|
/art/dex2oat/driver/ |
D | compiler_driver.cc | 1698 const ClassStatus existing = ClassStatus::kNotReady; in FastVerify() local 1700 compiled_classes_.Insert(ref, existing, ClassStatus::kVerifiedNeedsAccessChecks); in FastVerify() 2644 ClassStatus existing = ClassStatus::kNotReady; in RecordClassStatus() local 2645 if (!table->Get(ref, &existing)) { in RecordClassStatus() 2659 table->Get(ref, &existing); in RecordClassStatus() 2661 if (existing >= status) { in RecordClassStatus() 2667 result = table->Insert(ref, existing, status); in RecordClassStatus()
|
/art/tools/jfuzz/ |
D | README.md | 122 Mutation-based fuzz testing applies small random changes to existing inputs
|
/art/test/ |
D | README.chroot.md | 23 an existing ART by syncing the system partition);
|