Lines Matching refs:src_match
30 DiffMatch src_match, dst_match;
34 lcs.Get<int>([](int s, int d) { return s == d; }, &src_match, &dst_match);
43 if (src_match[src_cur] && dst_match[dst_cur]) {
51 if (!src_match[src_cur]) {
65 DiffMatch src_match, dst_match;
69 lcs.Get<int>([](int s, int d) { return s == d; }, &src_match, &dst_match);
72 EXPECT_TRUE(src_match.empty());
79 DiffMatch src_match, dst_match;
83 lcs.Get<int>([](int s, int d) { return s == d; }, &src_match, &dst_match);
86 EXPECT_TRUE(src_match.empty());
93 DiffMatch src_match, dst_match;
97 lcs.Get<int>([](int s, int d) { return s == d; }, &src_match, &dst_match);
100 EXPECT_EQ(src_match, DiffMatch(3, false));
107 DiffMatch src_match, dst_match;
111 lcs.Get<int>([](int s, int d) { return s == d; }, &src_match, &dst_match);
114 EXPECT_EQ(src_match, DiffMatch(6, true));
121 DiffMatch src_match, dst_match;
125 lcs.Get<int>([](int s, int d) { return s == d; }, &src_match, &dst_match);
131 EXPECT_EQ(src_match, src_expect);
138 DiffMatch src_match, dst_match;
142 lcs.Get<int>([](int s, int d) { return s == d; }, &src_match, &dst_match);
148 EXPECT_EQ(src_match, src_expect);
155 DiffMatch src_match, dst_match;
159 lcs.Get<int>([](int s, int d) { return s == d; }, &src_match, &dst_match);
165 EXPECT_EQ(src_match, src_expect);
172 DiffMatch src_match, dst_match;
176 lcs.Get<int>([](int s, int d) { return s == d; }, &src_match, &dst_match);
182 EXPECT_EQ(src_match, src_expect);
189 DiffMatch src_match, dst_match;
193 lcs.Get<int>([](int s, int d) { return s == d; }, &src_match, &dst_match);
196 EXPECT_EQ(src_match, DiffMatch(5, false));
203 DiffMatch src_match, dst_match;
207 lcs.Get<int>([](int s, int d) { return s == d; }, &src_match, &dst_match);
213 EXPECT_EQ(src_match, src_expect);