Home
last modified time | relevance | path

Searched refs:it (Results 251 – 275 of 334) sorted by relevance

1...<<11121314

/art/runtime/
Dart_method.cc277 for (CatchHandlerIterator it(accessor, dex_pc); it.HasNext(); it.Next()) { in FindCatchBlock() local
278 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex(); in FindCatchBlock()
281 found_dex_pc = it.GetHandlerAddress(); in FindCatchBlock()
297 found_dex_pc = it.GetHandlerAddress(); in FindCatchBlock()
Dtrace.cc93 auto it = art_method_id_map_.find(method); in EncodeTraceMethod() local
94 if (it != art_method_id_map_.end()) { in EncodeTraceMethod()
95 idx = it->second; in EncodeTraceMethod()
1017 for (const auto& it : exited_threads_) { in DumpThreadList() local
1018 os << it.first << "\t" << it.second << "\n"; in DumpThreadList()
/art/test/520-equivalent-phi/smali/
DEquivalent.smali31 # even though it is the one that has the correct type.
/art/libprofile/profile/
Dprofile_compilation_info.h381 for (Iterator it = index_begin; it != index_end; ++it) { variable
382 DCHECK_LT(*it, data->num_method_ids);
383 if (!data->AddMethod(flags, *it)) {
/art/tools/checker/
DREADME12 header which specifies the output group it should be tested against. The group
126 This condition is enforced at runtime, and an error is thrown if it's not respected.
130 of the defining group. In other words, it will be valid everywhere after its definition within the
143 Notice that the variable MyID remained valid outside the branch where it was defined.
/art/tools/jvmti-agents/chain-agents/
DREADME.md7 It will open the file `chain_agents.txt` from the directory passed in as an argument and read it
/art/compiler/optimizing/
Dsuperblock_cloner_test.cc178 for (auto it : hir_map) { in TEST_F() local
179 HInstruction* orig_instr = it.first; in TEST_F()
180 HInstruction* copy_instr = it.second; in TEST_F()
432 HInstructionIterator it(header->GetPhis()); in TEST_F() local
433 DCHECK(!it.Done()); in TEST_F()
434 HPhi* loop_phi = it.Current()->AsPhi(); in TEST_F()
Dinstruction_builder.cc285 for (HInstructionIterator it(block->GetPhis()); !it.Done(); it.Advance()) { in SetLoopHeaderPhiInputs() local
286 HPhi* phi = it.Current()->AsPhi(); in SetLoopHeaderPhiInputs()
756 for (DexSwitchTableIterator it(table); !it.Done(); it.Advance()) { in BuildSwitch() local
757 HInstruction* case_value = graph_->GetIntConstant(it.CurrentKey(), dex_pc); in BuildSwitch()
762 if (!it.IsLast()) { in BuildSwitch()
763 current_block_ = FindBlockStartingAt(it.GetDexPcForCurrentIndex()); in BuildSwitch()
1241 EncodedStaticFieldValueIterator it(klass->GetDexFile(), *klass->GetClassDef()); in HasTrivialClinit() local
1242 for (; it.HasNext(); it.Next()) { in HasTrivialClinit()
1243 switch (it.GetValueType()) { in HasTrivialClinit()
1263 LOG(FATAL) << "Unexpected type " << it.GetValueType(); in HasTrivialClinit()
[all …]
Dbounds_check_elimination.cc1690 auto it = early_exit_loop_.find(loop_id); in IsEarlyExitLoop() local
1691 if (it != early_exit_loop_.end()) { in IsEarlyExitLoop()
1692 return it->second; in IsEarlyExitLoop()
1792 auto it = taken_test_loop_.find(loop_id); in GetPreHeader() local
1793 if (it != taken_test_loop_.end()) { in GetPreHeader()
1794 HBasicBlock* block = it->second; in GetPreHeader()
1931 for (HInstructionIterator it(true_block->GetInstructions()); !it.Done(); it.Advance()) { in InsertPhiNodes() local
1932 HInstruction* instruction = it.Current(); in InsertPhiNodes()
/art/dex2oat/driver/
Dcompiler_driver.cc1058 auto it = image_classes_->find(descriptor); in operator ()() local
1059 if (it != image_classes_->end()) { in operator ()()
1062 image_classes_->erase(it); in operator ()()
1120 for (auto it = image_classes->begin(), end = image_classes->end(); it != end;) { in LoadImageClasses() local
1121 const std::string& descriptor(*it); in LoadImageClasses()
1127 it = image_classes->erase(it); // May cause some descriptors to be revisited. in LoadImageClasses()
1130 ++it; in LoadImageClasses()
1153 for (auto it = unresolved_exception_types.begin(); it != unresolved_exception_types.end(); ) { in LoadImageClasses() local
1154 dex::TypeIndex exception_type_idx = it->TypeIndex(); in LoadImageClasses()
1155 const DexFile* dex_file = it->dex_file; in LoadImageClasses()
[all …]
/art/tools/jvmti-agents/jit-load/
DREADME.md17 * Pass the '=fatal' option to the agent to cause it to abort if any classes are
/art/openjdkjvmti/
Devents.cc236 auto it = std::find(envs.begin(), envs.end(), env); in RemoveArtJvmTiEnv() local
237 if (it != envs.end()) { in RemoveArtJvmTiEnv()
238 envs.erase(it); in RemoveArtJvmTiEnv()
662 const auto it = non_standard_exits_.find(sframe); in MethodExited() local
663 if (it != non_standard_exits_.end()) { in MethodExited()
664 ret_val = it->second.return_val_obj_; in MethodExited()
665 non_standard_exits_.erase(it); in MethodExited()
713 const auto it = non_standard_exits_.find(sframe); in MethodExited() local
714 if (it != non_standard_exits_.end()) { in MethodExited()
715 return_value.SetJ(it->second.return_val_.j); in MethodExited()
[all …]
Dti_thread.cc746 auto it = global_tls->data.find(env); in GetThreadLocalStorage() local
747 if (it != global_tls->data.end()) { in GetThreadLocalStorage()
748 *data_ptr = const_cast<void*>(it->second); in GetThreadLocalStorage()
1056 for (auto it = ++current_thread_indexes.begin(); it != current_thread_indexes.end(); ++it) { in SuspendThreadList() local
1057 results[*it] = other_results; in SuspendThreadList()
/art/test/1928-exception-event-exception/
Dexpected.txt70 Throwing BaseTestException and catching it!
85 Throwing BaseTestException and catching it!
101 Throwing BaseTestException and catching it!
117 Throwing BaseTestException and catching it!
/art/runtime/base/
Dmutex.cc339 auto it = most_common_blocked.find(blocked_tid); in DumpContention() local
340 if (it != most_common_blocked.end()) { in DumpContention()
341 most_common_blocked.Overwrite(blocked_tid, it->second + count); in DumpContention()
345 it = most_common_blocker.find(owner_tid); in DumpContention()
346 if (it != most_common_blocker.end()) { in DumpContention()
347 most_common_blocker.Overwrite(owner_tid, it->second + count); in DumpContention()
/art/test/431-type-propagation/smali/
DTypePropagation.smali27 # the verifier, it assumes that the integer input must be converted
/art/tools/jvmti-agents/enable-vlog/
DREADME.md4 running process. Currently it only allows one to turn vlog options 'on'.
/art/test/484-checker-register-hints/smali/
DSmali.smali27 # We could check here that there is a parallel move, but it's only valid
92 # We could check here that there is a parallel move, but it's only valid
/art/libartbase/
DAndroid.bp75 // Exclude the version script from Darwin host since it's not
134 // generically. dex2oat takes care of it itself.
/art/runtime/gc/collector/
Dconcurrent_copying.cc1945 for (auto* it = heap_->allocation_stack_->Begin(), *end = heap_->allocation_stack_->End(); in VerifyNoFromSpaceReferences() local
1946 it < end; ++it) { in VerifyNoFromSpaceReferences()
1947 mirror::Object* const obj = it->AsMirrorPtr(); in VerifyNoFromSpaceReferences()
3290 auto it = skipped_blocks_map_.lower_bound(alloc_size); in AllocateInSkippedBlock() local
3291 if (it == skipped_blocks_map_.end()) { in AllocateInSkippedBlock()
3295 byte_size = it->first; in AllocateInSkippedBlock()
3299 it = skipped_blocks_map_.lower_bound(alloc_size + min_object_size); in AllocateInSkippedBlock()
3300 if (it == skipped_blocks_map_.end()) { in AllocateInSkippedBlock()
3304 CHECK_ALIGNED(it->first - alloc_size, space::RegionSpace::kAlignment); in AllocateInSkippedBlock()
3305 CHECK_GE(it->first - alloc_size, min_object_size) in AllocateInSkippedBlock()
[all …]
/art/build/apex/
DAndroid.bp38 // libadbconnection is internal and loaded with dlopen(), but it cannot use
122 // TODO: Make it work with clang lld.
128 // TODO: Make it work with clang lld.
379 // Genrules so we can run the checker, and empty Java library so that it gets executed.
/art/test/530-checker-regression-reftyp-final/smali/
DTestCase.smali24 # verify it using Checker.
/art/test/552-checker-primitive-typeprop/smali/
DSsaBuilder.smali21 # instruction use. SsaBuilder must substitute the int variant before removing it,
/art/runtime/mirror/
Dvar_handle_test.cc171 auto it = method_descriptor.cbegin(); in MethodTypeOf() local
172 if (*it++ != '(') { in MethodTypeOf()
178 for (; it != method_descriptor.cend() && !returnValueSeen; ++it) { in MethodTypeOf()
179 switch (*it) { in MethodTypeOf()
181 descriptors.push_back(std::string(++it, method_descriptor.cend())); in MethodTypeOf()
195 descriptors.push_back(prefix + std::string(it, it + 1)); in MethodTypeOf()
199 auto last = it + 1; in MethodTypeOf()
203 descriptors.push_back(prefix + std::string(it, last + 1)); in MethodTypeOf()
205 it = last; in MethodTypeOf()
/art/tools/golem/
Dbuild-target.sh36 it also tars the results of the build together into your <target.tar.gz> file.

1...<<11121314