Searched refs:sorted_b (Results 1 – 1 of 1) sorted by relevance
/aosp14/frameworks/base/tools/aapt2/ |
H A D | ResourceValues.cpp | 531 std::vector<const Symbol*> sorted_b; in Equals() local 532 std::transform(other->symbols.begin(), other->symbols.end(), std::back_inserter(sorted_b), in Equals() 534 std::sort(sorted_b.begin(), sorted_b.end(), [](const Symbol* a, const Symbol* b) -> bool { in Equals() 538 return std::equal(sorted_a.begin(), sorted_a.end(), sorted_b.begin(), in Equals() 855 std::vector<const Entry*> sorted_b = ToPointerVec(other->entries); in Equals() local 856 std::sort(sorted_b.begin(), sorted_b.end(), KeyNameComparator); in Equals() 858 return std::equal(sorted_a.begin(), sorted_a.end(), sorted_b.begin(), in Equals()
|