Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt2/
DResourceValues.cpp563 std::vector<const Symbol*> sorted_b; in Equals() local
564 std::transform(other->symbols.begin(), other->symbols.end(), std::back_inserter(sorted_b), in Equals()
566 std::sort(sorted_b.begin(), sorted_b.end(), [](const Symbol* a, const Symbol* b) -> bool { in Equals()
570 return std::equal(sorted_a.begin(), sorted_a.end(), sorted_b.begin(), in Equals()
887 std::vector<const Entry*> sorted_b = ToPointerVec(other->entries); in Equals() local
888 std::sort(sorted_b.begin(), sorted_b.end(), KeyNameComparator); in Equals()
890 return std::equal(sorted_a.begin(), sorted_a.end(), sorted_b.begin(), in Equals()