Searched defs:sorted_untranslatable_sections (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/tools/aapt2/compile/
H A DPseudolocaleGenerator.cpp77 std::vector<UnifiedSpan> sorted_untranslatable_sections; local
78 sorted_untranslatable_sections.reserve(string.untranslatable_sections.size());
80 std::back_inserter(sorted_untranslatable_sections),
82 std::sort(sorted_untranslatable_sections.begin(), sorted_untranslatable_sections.end());
85 merged_spans.reserve(sorted_spans.size() + sorted_untranslatable_sections.size());
87 auto untranslatable_iter = sorted_untranslatable_sections.begin();
89 untranslatable_iter != sorted_untranslatable_sections.end()) {
104 while (untranslatable_iter != sorted_untranslatable_sections.end()) {

Completed in 122 milliseconds