Lines Matching +full:diff +full:- +full:sequences
7 // http://www.apache.org/licenses/LICENSE-2.0
27 namespace diff {
29 // The result of a diff.
42 // Given two sequences, it creates a matching between them. The elements are
125 // The LCS algorithm is simple. Given sequences s and d, with a:b depicting a in CalculateLCS()
138 // sequences. in CalculateLCS()
198 src_match_result->clear(); in RetrieveMatch()
199 dst_match_result->clear(); in RetrieveMatch()
201 src_match_result->resize(src_.size(), false); in RetrieveMatch()
202 dst_match_result->resize(dst_.size(), false); in RetrieveMatch()
221 } // namespace diff