Searched refs:sorted_b (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/tools/aapt2/ |
D | ResourceValues.cpp | 563 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() 891 std::vector<const Entry*> sorted_b = ToPointerVec(other->entries); in Equals() local 892 std::sort(sorted_b.begin(), sorted_b.end(), KeyNameComparator); in Equals() 894 return std::equal(sorted_a.begin(), sorted_a.end(), sorted_b.begin(), in Equals()
|