Home
last modified time | relevance | path

Searched refs:sorted_sections (Results 1 – 2 of 2) sorted by relevance

/art/dexlayout/
Ddex_visualize.cc307 const std::vector<dex_ir::DexFileSection>& sorted_sections, in FindNextByteAfterSection() argument
309 for (size_t i = section_index + 1; i < sorted_sections.size(); ++i) { in FindNextByteAfterSection()
310 const dex_ir::DexFileSection& section = sorted_sections.at(i); in FindNextByteAfterSection()
327 std::vector<dex_ir::DexFileSection> sorted_sections = in ShowDexSectionStatistics() local
329 for (size_t i = 0; i < sorted_sections.size(); ++i) { in ShowDexSectionStatistics()
330 const dex_ir::DexFileSection& file_section = sorted_sections[i]; in ShowDexSectionStatistics()
333 bytes = FindNextByteAfterSection(header, sorted_sections, i) - file_section.offset; in ShowDexSectionStatistics()
Ddex_ir.cc934 std::vector<dex_ir::DexFileSection> sorted_sections; in GetSortedDexFileSections() local
937 sorted_sections.push_back(dex_ir::DexFileSection(s.name, in GetSortedDexFileSections()
943 std::sort(sorted_sections.begin(), in GetSortedDexFileSections()
944 sorted_sections.end(), in GetSortedDexFileSections()
952 return sorted_sections; in GetSortedDexFileSections()