Home
last modified time | relevance | path

Searched refs:it (Results 301 – 325 of 334) sorted by relevance

1...<<11121314

/art/tools/hiddenapi/
Dhiddenapi_test.cc158 auto it = map.find(key); in SafeMapGet() local
159 if (it == map.end()) { in SafeMapGet()
163 return it->second; in SafeMapGet()
/art/compiler/optimizing/
Dcode_generator.h952 for (const auto& it : candidates) { in NewSlowPath() local
953 InstructionType* other_instruction = it.first; in NewSlowPath()
954 SlowPathCodeType* other_slow_path = down_cast<SlowPathCodeType*>(it.second); in NewSlowPath()
Dintrinsics_arm_vixl.cc444 __ it(eq); in VisitMathRoundFloat() local
971 __ it(ne); in EmitNativeCode() local
1183 __ it(gt); in VisitStringCompareTo() local
1205 __ it(ne); in VisitStringCompareTo() local
1390 __ it(cc); in GenerateStringCompareToLoop() local
1572 __ it(cs); // If uncompressed, in VisitStringEquals() local
2633 __ it(ne); in GenHighestOneBit() local
2699 __ it(ne); in GenLowestOneBit() local
Dcode_generator.cc412 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in Compile() local
413 HInstruction* current = it.Current(); in Compile()
Dcode_generator_arm_vixl.cc1383 __ it(eq); in GenerateLongTestConstant() local
1459 __ it(eq); in GenerateLongTest() local
1538 __ it(condition.first); in GenerateConditionGeneric() local
1601 __ it(ne); in GenerateEqualLong() local
1635 __ it(ne); in GenerateConditionLong() local
1708 __ it(ne); in GenerateConditionIntegralOrNonPrimitive() local
1751 __ it(ne); in GenerateConditionIntegralOrNonPrimitive() local
2931 __ it(cond.first); in VisitSelect() local
2950 __ it(cond.first); in VisitSelect() local
2952 __ it(cond.first); in VisitSelect() local
[all …]
/art/dexlayout/
Ddexlayout.cc1778 auto it = code_item_layout.emplace(code_item, state); in LayoutCodeItems() local
1779 if (!it.second) { in LayoutCodeItems()
1780 LayoutType& layout_type = it.first->second; in LayoutCodeItems()
1792 auto it = code_item_layout.find(code_item.get()); in LayoutCodeItems() local
1793 DCHECK(it != code_item_layout.end()); in LayoutCodeItems()
1794 ++layout_count[static_cast<size_t>(it->second)]; in LayoutCodeItems()
Ddex_writer.cc614 auto it = dex_layout_->LayoutHotnessInfo().code_item_layout_.find(code_item.get()); in WriteCodeItems() local
615 if (it != dex_layout_->LayoutHotnessInfo().code_item_layout_.end()) { in WriteCodeItems()
616 code_section->parts_[static_cast<size_t>(it->second)].CombineSection( in WriteCodeItems()
Ddex_ir.h265 auto it = map.begin(); in SortByMapOrder() local
271 collection_[i].reset(it->second); in SortByMapOrder()
272 ++it; in SortByMapOrder()
/art/compiler/utils/
Dassembler_thumb_test_expected.cc.inc56 " b4: 18 bf it ne\n"
65 " d0: 18 bf it ne\n"
77 " f4: 18 bf it ne\n"
/art/runtime/
Dstack.cc933 auto it = instrumentation_stack.find(return_pc_addr); in WalkStack() local
934 CHECK(it != instrumentation_stack.end()); in WalkStack()
935 const instrumentation::InstrumentationStackFrame& instrumentation_frame = it->second; in WalkStack()
Dthread_list.cc1026 for (const auto& it : list_) { in SuspendThreadByThreadId() local
1027 if (it->GetThreadId() == thread_id) { in SuspendThreadByThreadId()
1028 thread = it; in SuspendThreadByThreadId()
Dclass_loader_context.cc711 auto it = remap.find(base_dex_location); in EncodeContextInternal() local
712 CHECK(it != remap.end()) << base_dex_location; in EncodeContextInternal()
713 location = it->second + DexFileLoader::GetMultiDexSuffix(location); in EncodeContextInternal()
Delf_file.cc887 typename SymbolTable::const_iterator it = (*symbol_table)->find(symbol_name); in FindSymbolByName() local
888 if (it == (*symbol_table)->end()) { in FindSymbolByName()
891 return it->second; in FindSymbolByName()
Dthread.cc173 for (uintptr_t* it = begin; it != end; ++it) { in InitTlsEntryPoints() local
174 *it = reinterpret_cast<uintptr_t>(UnimplementedEntryPoint); in InitTlsEntryPoints()
539 auto it = custom_tls_.find(key); in GetCustomTLS() local
540 return (it != custom_tls_.end()) ? it->second.get() : nullptr; in GetCustomTLS()
/art/test/1965-get-set-local-primitive-no-tables/jasmin/
DTestCases1965.j26 ; NB We limit locals 4 so that every method has space to fit a long/double in it.
/art/test/913-heaps/
Dheaps.cc240 auto it = sClassData.find(*tag_ptr); in Java_art_Test913_followReferences() local
241 if (it != sClassData.end()) { in Java_art_Test913_followReferences()
242 const ClassData& class_data = it->second; in Java_art_Test913_followReferences()
/art/tools/jfuzz/
DREADME.md120 as input to a system in an attempt to find bugs or make it crash. Generation-
/art/test/510-checker-try-catch/smali/
DBuilder.smali613 # Test control flow that enters a try block, leaves it and returns again.
1249 # INVOKE it follows, even if there is a try boundary between them.
1276 # FILLED_NEW_ARRAY it follows, even if there is a try boundary between them.
1308 # Test case for ReturnVoid inside a try block. Builder needs to move it outside
1322 # Test case for Return inside a try block. Builder needs to move it outside the
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S1440 vmov d0, r0, r1 @ store into fpr, for when it's a fpr return...
1683 vmov d0, r0, r1 @ store into fpr, for when it's a fpr return...
1786 * it doesn't fit in the low 64 bits.
1904 it lt
1907 it gt
/art/libdexfile/
DAndroid.bp445 // //system/extras/simpleperf:simpleperf_ndk are allowed to use it.
/art/test/955-methodhandles-smali/smali/
DMain.smali173 # We exercise it with various types of unboxing / widening conversions
233 # This throws WrongMethodTypeException as it's a two step conversion int->long->Long or int->Intege…
/art/compiler/utils/arm/
Djni_macro_assembler_arm_vixl.cc822 ___ it(eq, 0xc); in CreateHandleScopeEntry() local
829 ___ it(ne, 0x8); in CreateHandleScopeEntry() local
857 ___ it(ne, 0x8); in CreateHandleScopeEntry() local
/art/runtime/mirror/
Dvar_handle.cc1674 auto it = std::lower_bound(std::cbegin(kAccessorToAccessMode), in GetAccessModeByMethodName() local
1678 if (it == last || strcmp(it->method_name, method_name) != 0) { in GetAccessModeByMethodName()
1681 *access_mode = it->access_mode; in GetAccessModeByMethodName()
/art/openjdkjvmti/
Dti_stack.cc656 auto it = std::find(data.thread_list_indices.begin(), data.thread_list_indices.end(), i); in GetThreadListStackTraces() local
657 if (it == data.thread_list_indices.end()) { in GetThreadListStackTraces()
674 size_t f_index = it - data.thread_list_indices.begin(); in GetThreadListStackTraces()
/art/tools/
Dlibcore_failures.txt241 …t on walleye bots, currenlty on OPM1.171019.019. But test passes on Q, so just mark it fail here.",

1...<<11121314