Home
last modified time | relevance | path

Searched refs:it (Results 201 – 225 of 334) sorted by relevance

12345678910>>...14

/art/tools/dexfuzz/
DREADME17 for mutation - e.g. some tests taken from the ART test suite - and point it at an
18 ADB-connected Android device, and it will fuzz these seed files, and execute the
32 having DEX files pushed to it and executed with the dalvikvm command.
93 avoid attempting to mutate a file indefinitely, it is possible that
94 an attempt to mutate a file doesn't actually mutate it. This counts
/art/openjdkjvmti/
Djvmti_weak_table.h147 auto it = tagged_objects_.find(art::GcRoot<art::mirror::Object>(obj)); in GetTagLocked() local
148 if (it != tagged_objects_.end()) { in GetTagLocked()
149 *result = it->second; in GetTagLocked()
/art/test/800-smali/smali/
Db_22411633_4.smali12 # Note: we make sure that it is an uninitialized reference and not a conflict in sister
Db_22777307.smali11 # Cloneable was chosen because it's an already existing interface.
Db_22331663_pass.smali15 # reject this if it is unused.
Db_27799205_helper.smali5 # unresolved types. It makes it harder to distinguish what kind of error we got.
Db_27799205_1.smali4 # A class with an unresolved array type should not fail hard (unless it's a primitive-type access).
Db_27799205_2.smali4 # A class with an unresolved array type should not fail hard (unless it's a primitive-type access).
/art/cmdline/
Dcmdline_parser.h722 for (const std::unique_ptr<detail::CmdlineParseArgumentAny>& it : completed_arguments_) { in DumpHelp() local
723 auto cat = it->GetCategory(); in DumpHelp()
728 args.at(cat.value()).push_back(it.get()); in DumpHelp()
730 uncat.push_back(it.get()); in DumpHelp()
738 for (auto it : category_order_) { in DumpHelp() local
739 auto cur = args.find(it); in DumpHelp()
741 vios.Stream() << "The following " << it << " arguments are supported:" << std::endl; in DumpHelp()
/art/libartbase/base/
Dbit_table_test.cc157 for (auto it : indices) { in TEST() local
158 uint64_t expected = it.first; in TEST()
159 BitMemoryRegion actual = table.GetBitMemoryRegion(it.second); in TEST()
/art/test/175-alloc-big-bignums/
Dinfo.txt9 This test is a lot nastier than it looks. In particular, failure on target tends
/art/dexlayout/
Dcompact_dex_writer.cc170 SafeDexInstructionIterator it(instructions.begin(), instructions.end()); in WriteCodeItem() local
171 for (; !it.IsErrorState() && it < instructions.end(); ++it) { in WriteCodeItem()
173 if (std::next(it).IsErrorState()) { in WriteCodeItem()
176 const Instruction::Code opcode = it->Opcode(); in WriteCodeItem()
/art/perfetto_hprof/
Dperfetto_hprof.cc94 auto it = m->find(s); in FindOrAppend() local
95 if (it == m->end()) { in FindOrAppend()
96 std::tie(it, std::ignore) = m->emplace(s, m->size()); in FindOrAppend()
98 return it->second; in FindOrAppend()
214 for (auto it = cfg->process_cmdline(); it; ++it) { in OnSetup() local
215 std::string other = (*it).ToStdString(); in OnSetup()
/art/compiler/driver/
Dcompiled_method_storage.cc240 auto it = thunk_map_.find(key); in GetThunkCode() local
241 if (it != thunk_map_.end()) { in GetThunkCode()
242 const ThunkMapValue& value = it->second; in GetThunkCode()
/art/compiler/optimizing/
Dsuperblock_cloner.h202 for (auto it : *hir_map_) { in GetInstrOrig()
203 if (it.second == copy_instr) { in GetInstrOrig()
204 return it.first; in GetInstrOrig()
Dscheduler.h341 auto it = nodes_map_.find(instr); in GetNode() local
342 if (it == nodes_map_.end()) { in GetNode()
345 return it->second.get(); in GetNode()
/art/runtime/base/
Dtiming_logger.cc100 auto it = histograms_.find(&candidate); in AddPair() local
101 if (it == histograms_.end()) { in AddPair()
107 histogram = *it; in AddPair()
/art/test/924-threads/src/art/
DTest924.java240 Iterator<Thread> it = threadList.iterator(); in doAllThreadsTests() local
241 while (it.hasNext()) { in doAllThreadsTests()
242 Thread t = it.next(); in doAllThreadsTests()
244 it.remove(); in doAllThreadsTests()
/art/runtime/hprof/
Dhprof.cc613 auto it = classes_.find(c); in LookupClassId() local
614 if (it == classes_.end()) { in LookupClassId()
647 auto it = strings_.find(string); in LookupStringId() local
648 if (it != strings_.end()) { in LookupStringId()
649 return it->second; in LookupStringId()
693 for (const auto& it : traces_) { in WriteStackTraces() local
694 const gc::AllocRecordStackTrace* trace = it.first; in WriteStackTraces()
695 HprofStackTraceSerialNumber trace_sn = it.second; in WriteStackTraces()
841 for (auto it = records->Begin(), end = records->End(); it != end; ++it) { in PopulateAllocationTrackingTraces() local
842 const mirror::Object* obj = it->first.Read(); in PopulateAllocationTrackingTraces()
[all …]
/art/runtime/
Dfault_handler.cc253 auto it = std::find(generated_code_handlers_.begin(), generated_code_handlers_.end(), handler); in RemoveHandler() local
254 if (it != generated_code_handlers_.end()) { in RemoveHandler()
255 generated_code_handlers_.erase(it); in RemoveHandler()
/art/runtime/interpreter/mterp/
DREADME.txt38 exceed "handler-size", but the VM will abort on startup if it detects an
47 restricted, as simple macros are used to massage it for use with both C
48 (where it is verified) and assembly (where the definitions are used).
/art/runtime/gc/accounting/
Dmod_union_table.cc456 for (auto it = references_.begin(); it != references_.end();) { in UpdateAndMarkReferences() local
457 std::vector<mirror::HeapReference<mirror::Object>*>& references = it->second; in UpdateAndMarkReferences()
470 ++it; in UpdateAndMarkReferences()
473 it = references_.erase(it); in UpdateAndMarkReferences()
/art/tools/hiddenapi/
Dhiddenapi.cc502 auto it = classes_.find(descriptor); in FindClass() local
503 if (it == classes_.end()) { in FindClass()
506 return &it->second; in FindClass()
968 auto it = api_list.find(boot_member.GetApiEntry()); in EncodeAccessFlags() local
969 bool api_list_found = (it != api_list.end()); in EncodeAccessFlags()
972 builder.WriteFlags(api_list_found ? it->second : ApiList::Whitelist()); in EncodeAccessFlags()
1068 auto it = boot_members.find(entry); in ListApi() local
1069 CHECK(it != boot_members.end()); in ListApi()
1070 it->second.insert(ApiStubs::ToString(stub_api)); in ListApi()
/art/runtime/arch/arm/
Djni_entrypoints_arm.S81 // If we're coming from JNI stub with tail call, it is LR. If we're coming from
83 // If we're coming directly from compiled code, it is LR, set further down.
/art/test/606-erroneous-class/smali/
DErrClass.smali22 # Use a new instance before initializing it => hard verifier error.

12345678910>>...14