Home
last modified time | relevance | path

Searched refs:it (Results 176 – 200 of 334) sorted by relevance

12345678910>>...14

/art/libnativebridge/tests/
DAndroid.bp23 // TODO(mast): Split up art_gtest_defaults so that it can be used for the
83 // TODO(mast): Split up art_gtest_defaults so that it can be used for the
148 // TODO(mast): Split up art_gtest_defaults so that it can be used for the
/art/compiler/optimizing/
Dreference_type_propagation.cc223 for (auto it = uses.begin(), end = uses.end(); it != end; /* ++it below */) { in BoundTypeIn() local
224 HInstruction* user = it->GetUser(); in BoundTypeIn()
225 size_t index = it->GetIndex(); in BoundTypeIn()
227 ++it; in BoundTypeIn()
340 for (HInstructionIterator it(block->GetPhis()); !it.Done(); it.Advance()) { in VisitBasicBlock() local
341 VisitPhi(it.Current()->AsPhi()); in VisitBasicBlock()
346 for (HInstructionIteratorHandleChanges it(block->GetInstructions()); !it.Done(); it.Advance()) { in VisitBasicBlock() local
347 HInstruction* instr = it.Current(); in VisitBasicBlock()
Dscheduler.cc583 for (HBackwardInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in Schedule() local
584 HInstruction* instruction = it.Current(); in Schedule()
783 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in IsSchedulable() local
784 if (!IsSchedulable(it.Current())) { in IsSchedulable()
Dparallel_move_resolver.cc390 for (auto it = scratches_.begin(), end = scratches_.end(); it != end; ++it) { in RemoveScratchLocation() local
391 if (loc.Equals(*it)) { in RemoveScratchLocation()
392 scratches_.erase(it); in RemoveScratchLocation()
Dconstant_folding.cc86 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in VisitBasicBlock() local
87 it.Current()->Accept(this); in VisitBasicBlock()
/art/test/068-classloader/
Dinfo.txt1 Class loaders allow code to "redefine" a given class, e.g. it's possible to
/art/test/656-annotation-lookup-generic-jni/
Dinfo.txt3 through Generic JNI would crash the Generic JNI trampoline because it
/art/dex2oat/linker/
Drelative_patcher_test.h290 auto it = thunk_map_.find(ThunkKey(patch)); in GetThunkCode() local
291 CHECK(it != thunk_map_.end()); in GetThunkCode()
292 const ThunkValue& value = it->second; in GetThunkCode()
371 auto it = map.find(ref); in FindMethodOffset() local
372 if (it == map.end()) { in FindMethodOffset()
375 return std::pair<bool, uint32_t>(true, it->second); in FindMethodOffset()
/art/libnativeloader/
Dpublic_libraries.cpp218 auto it = std::find(sonames->begin(), sonames->end(), lib_name); in InitDefaultPublicLibraries() local
219 if (it != sonames->end()) { in InitDefaultPublicLibraries()
220 sonames->erase(it); in InitDefaultPublicLibraries()
225 auto it = std::find(sonames->begin(), sonames->end(), kNeuralNetworksApexPublicLibrary); in InitDefaultPublicLibraries() local
226 if (it != sonames->end()) { in InitDefaultPublicLibraries()
227 sonames->erase(it); in InitDefaultPublicLibraries()
/art/openjdkjvmti/
Dti_heap.cc427 auto it = visited_interfaces.find(inf_klass.Ptr()); in VisitInterface() local
428 if (it != visited_interfaces.end()) { in VisitInterface()
1640 auto it = map_.find(root->AsMirrorPtr()); in ReplaceObjectReferences()
1641 if (it != map_.end()) { in ReplaceObjectReferences()
1642 root->Assign(it->second); in ReplaceObjectReferences()
1651 auto it = map_.find(obj->GetFieldObject<art::mirror::Object>(off)); in ReplaceObjectReferences()
1652 if (it != map_.end()) { in ReplaceObjectReferences()
1665 obj->SetFieldObject</*transaction*/ false>(off, it->second); in ReplaceObjectReferences()
1711 auto it = map_.find(*obj); in ReplaceStrongRoots() local
1712 if (it != map_.end()) { in ReplaceStrongRoots()
[all …]
/art/test/1945-proxy-method-arguments/
Dinfo.txt5 frame, it could end up with a stale reference, as the corresponding
/art/test/097-duplicate-method/
Dinfo.txt5 with Jack (this is invalid) or smali (it does not keep duplicate
/art/runtime/
Ddebugger.cc861 auto it = table_.find(entry); in IndexOf() local
862 if (it == table_.end()) { in IndexOf()
865 return it->index; in IndexOf()
977 for (auto it = records->RBegin(), end = records->REnd(); in GetRecentAllocations() local
978 count > 0 && it != end; count--, it++) { in GetRecentAllocations()
979 const gc::AllocRecord* record = &it->second; in GetRecentAllocations()
1045 for (auto it = records->RBegin(), end = records->REnd(); in GetRecentAllocations() local
1046 count > 0 && it != end; count--, it++) { in GetRecentAllocations()
1052 const gc::AllocRecord* record = &it->second; in GetRecentAllocations()
Dmodule_exclusion_test.cc43 auto it = std::find(modules.begin(), modules.end(), module_); in GetLibCoreModuleNames() local
44 if (it != modules.end()) { in GetLibCoreModuleNames()
45 modules.erase(it); in GetLibCoreModuleNames()
/art/tools/jvmti-agents/simple-force-redefine/
DREADME.md26 Since the agent has no static state it can be attached multiple times to the same process.
33 continue reading from the fifo even after it gets an EOF.)
Dforceredefine.cc126 for (auto it = c.instructions.begin(); it != c.instructions.end(); ++it) { in Transform() local
127 lir::Instruction* fi = *it; in Transform()
/art/dex2oat/dex/
Ddex_to_dex_compiler.cc214 for (DexInstructionIterator it = instructions.begin(); it != instructions.end(); ++it) { in Compile() local
215 const uint32_t dex_pc = it.DexPc(); in Compile()
216 Instruction* inst = const_cast<Instruction*>(&it.Inst()); in Compile()
232 ++it; in Compile()
328 ++it; in Compile()
/art/tools/veridex/
Dveridex.cc198 for (const auto &it : type_map) { in Run() local
199 hidden_api.AddSignatureSource(it.first, SignatureSource::BOOT); in Run()
236 for (const auto &it : type_map) { in Run() local
237 if (!hidden_api.IsInBoot(it.first)) { in Run()
238 hidden_api.AddSignatureSource(it.first, SignatureSource::APP); in Run()
/art/test/1959-redefine-object-instrument/
Dinfo.txt7 (where it being the non-obsolete version is advantageous). Unfortunately some
/art/runtime/jni/
Djava_vm_ext.cc235 for (auto it = libraries_.begin(); it != libraries_.end(); ++it) { in UnloadBootNativeLibraries() local
236 SharedLibrary* const library = it->second; in UnloadBootNativeLibraries()
263 auto it = libraries_.find(path); in Get() local
264 return (it == libraries_.end()) ? nullptr : it->second; in Get()
342 for (auto it = libraries_.begin(); it != libraries_.end(); ) { in UnloadNativeLibraries() local
343 SharedLibrary* const library = it->second; in UnloadNativeLibraries()
350 it = libraries_.erase(it); in UnloadNativeLibraries()
352 ++it; in UnloadNativeLibraries()
/art/compiler/debug/
Delf_debug_line_writer.h187 auto it = directories_map.find(package_name); in WriteCompilationUnit() local
188 if (it == directories_map.end()) { in WriteCompilationUnit()
193 directory_index = it->second; in WriteCompilationUnit()
/art/dex2oat/
DAndroid.bp277 // it'd get overridden by the load hook even when it uses
321 // it'd get overridden by the load hook even when it uses
357 // TODO: Having this is not ideal as it might obscure errors.
358 // Try to get rid of it.
/art/libartbase/base/
Dstride_iterator.h123 const StrideIterator<T>& it) {
124 return it + dist;
/art/perfetto_hprof/
DAndroid.bp43 // Note that this tool needs to be built for both 32-bit and 64-bit since it requires
44 // to be same ISA as what it is attached to.
/art/test/800-smali/smali/
Db_27799205_6.smali4 # A class with an unresolved array type should not fail hard (unless it's a primitive-type access).

12345678910>>...14