Lines Matching refs:lines
1478 // lines prefixed with ' ' for no change, '-' for deletion and '+' for
1554 std::vector<std::string> lines;
1565 lines.push_back(str.substr(start, i - start - 1));
1572 lines.push_back(str.substr(start, end - start));
1573 return lines;
6618 std::vector<std::string> lines;
6619 SplitString(contents, '\n', &lines);
6620 for (size_t i = 0; i < lines.size(); ++i) {
6621 if (lines[i].empty()) continue;
6622 if (!ParseGoogleTestFlag(lines[i].c_str())) g_help_flag = true;