Searched refs:sorted_a (Results 1 – 1 of 1) sorted by relevance
/aosp12/frameworks/base/tools/aapt2/ |
H A D | ResourceValues.cpp | 523 std::vector<const Symbol*> sorted_a; in Equals() local 524 std::transform(symbols.begin(), symbols.end(), std::back_inserter(sorted_a), in Equals() 526 std::sort(sorted_a.begin(), sorted_a.end(), [](const Symbol* a, const Symbol* b) -> bool { in Equals() 537 return std::equal(sorted_a.begin(), sorted_a.end(), sorted_b.begin(), in Equals() 851 std::vector<const Entry*> sorted_a = ToPointerVec(entries); in Equals() local 852 std::sort(sorted_a.begin(), sorted_a.end(), KeyNameComparator); in Equals() 857 return std::equal(sorted_a.begin(), sorted_a.end(), sorted_b.begin(), in Equals()
|