Home
last modified time | relevance | path

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

/external/protobuf/src/google/protobuf/util/
Dmessage_differencer.cc190 std::vector<int>* match_list1, std::vector<int>* match_list2) { in MatchIndicesPostProcessorForSmartList() argument
192 for (int i = 0; i < match_list1->size(); ++i) { in MatchIndicesPostProcessorForSmartList()
193 if (match_list1->at(i) < 0) { in MatchIndicesPostProcessorForSmartList()
196 if (last_matched_index < 0 || match_list1->at(i) > last_matched_index) { in MatchIndicesPostProcessorForSmartList()
197 last_matched_index = match_list1->at(i); in MatchIndicesPostProcessorForSmartList()
199 match_list2->at(match_list1->at(i)) = -1; in MatchIndicesPostProcessorForSmartList()
200 match_list1->at(i) = -1; in MatchIndicesPostProcessorForSmartList()
940 std::vector<int> match_list1; in CompareRepeatedField() local
955 key_comparator, *parent_fields, &match_list1, in CompareRepeatedField()
973 if (!simple_list && match_list1[i] == -1) { in CompareRepeatedField()
[all …]
Dmessage_differencer.h836 std::vector<int>* match_list1, std::vector<int>* match_list2);