Searched refs:edits (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/googletest/googletest/src/
H A Dgtest.cc1206 const std::vector<EditType> edits = CalculateOptimalEdits(left, right); local
1210 while (edit_i < edits.size()) {
1212 while (edit_i < edits.size() && edits[edit_i] == kMatch) {
1225 // Iterate the edits until we found enough suffix for the hunk or the input
1228 for (; edit_i < edits.size(); ++edit_i) {
1231 std::vector<EditType>::const_iterator it = edits.begin() + edit_i;
1232 while (it != edits.end() && *it == kMatch) ++it;
1233 if (it == edits.end() || (it - edits
[all...]
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc3451 std::string EditsToString(const std::vector<EditType>& edits) { argument
3453 for (size_t i = 0; i < edits.size(); ++i) {
3455 out.append(1, kEdits[edits[i]]);

Completed in 39 milliseconds