Searched refs:sorted_b (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/tools/aapt2/ |
D | ResourceValues.cpp | 548 std::vector<const Symbol*> sorted_b; in Equals() local 549 std::transform(other->symbols.begin(), other->symbols.end(), std::back_inserter(sorted_b), in Equals() 551 std::sort(sorted_b.begin(), sorted_b.end(), [](const Symbol* a, const Symbol* b) -> bool { in Equals() 555 return std::equal(sorted_a.begin(), sorted_a.end(), sorted_b.begin(), in Equals() 872 std::vector<const Entry*> sorted_b = ToPointerVec(other->entries); in Equals() local 873 std::sort(sorted_b.begin(), sorted_b.end(), KeyNameComparator); in Equals() 875 return std::equal(sorted_a.begin(), sorted_a.end(), sorted_b.begin(), in Equals()
|