Home
last modified time | relevance | path

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

/third_party/protobuf/src/google/protobuf/util/
Dmessage_differencer.cc188 std::vector<int>* match_list1, std::vector<int>* match_list2) { in MatchIndicesPostProcessorForSmartList() argument
190 for (int i = 0; i < match_list1->size(); ++i) { in MatchIndicesPostProcessorForSmartList()
191 if (match_list1->at(i) < 0) { in MatchIndicesPostProcessorForSmartList()
194 if (last_matched_index < 0 || match_list1->at(i) > last_matched_index) { in MatchIndicesPostProcessorForSmartList()
195 last_matched_index = match_list1->at(i); in MatchIndicesPostProcessorForSmartList()
197 match_list2->at(match_list1->at(i)) = -1; in MatchIndicesPostProcessorForSmartList()
198 match_list1->at(i) = -1; in MatchIndicesPostProcessorForSmartList()
943 std::vector<int> match_list1; in CompareRepeatedField() local
958 key_comparator, *parent_fields, &match_list1, in CompareRepeatedField()
976 if (!simple_list && match_list1[i] == -1) { in CompareRepeatedField()
[all …]
Dmessage_differencer.h852 std::vector<int>* match_list1, std::vector<int>* match_list2);