Home
last modified time | relevance | path

Searched refs:It (Results 1 – 12 of 12) sorted by relevance

/art/runtime/
Dleb128.h196 template<typename It>
197 void InsertBackUnsigned(It cur, It end) { in InsertBackUnsigned()
207 template<typename It>
208 void InsertBackSigned(It cur, It end) { in InsertBackSigned()
Dart_method.cc199 typedef MappingTable::PcToDexIterator It; in ToDexPc() typedef
200 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) { in ToDexPc()
231 typedef MappingTable::DexToPcIterator It; in ToNativeQuickPc() typedef
232 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) { in ToNativeQuickPc()
/art/test/430-live-register-slow-path/
Dinfo.txt1 Regression test for the linear scan register allocator. It used
/art/test/134-nodex2oat-nofallback/
Dinfo.txt2 116. It needs it separate test as it needs a custom check script.
/art/test/477-checker-bound-type/
Dinfo.txt2 It also tests a code generator regression for GenerateTestAndBranch which
/art/compiler/dex/quick/mips/
DREADME.mips43 an implicit NOP. It should not be too difficult to provide a slot-filling
54 for Arm and x86. It might make sense to replace the inline code generation
/art/cmdline/
DREADME.md70 --apple:123 --orange:0.456` . It will error out automatically if invalid flags are given, or if the
113 It will parse either `-hello:world` or `-hello:galaxy` only (and error out on other variations of
128 It will parse `-xinterpret` as `true` and `-xnointerpret` as `false`.
174 It's semantically equivalent to making a series of argument definitions that map to `Unit` but don't
180 static interface provided by `CmdlineTypeParser`. It is recommended to inherit from
/art/tools/
Dart15 # This script is used on host and device. It uses a common subset
Dlibcore_failures.txt7 * It is also used to enable AOSP experiments, and not mess up with CTS's expectations.
/art/oatdump/
Doatdump.cc1185 typedef MappingTable::PcToDexIterator It; in DumpMappingTable() typedef
1187 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) { in DumpMappingTable()
1193 typedef MappingTable::DexToPcIterator It; in DumpMappingTable() typedef
1195 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) { in DumpMappingTable()
1207 typedef MappingTable::PcToDexIterator It; in DumpMappingAtOffset() typedef
1208 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) { in DumpMappingAtOffset()
1215 typedef MappingTable::DexToPcIterator It; in DumpMappingAtOffset() typedef
1216 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) { in DumpMappingAtOffset()
/art/runtime/base/
Dmutex.cc172 typedef std::set<BaseMutex*>::const_iterator It; in DumpAll() typedef
174 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) { in DumpAll()
182 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) { in DumpAll()
/art/compiler/dex/quick/
Dcodegen_util.cc42 template <typename It>
44 const Signature& signature, uint32_t size, It first) { in DumpMappingTable()