Lines Matching refs:line
21 * \brief Command line parsing.
553 // consume trailing new line
711 // reading single line and checking if it ends with ".txt"
715 // read the first line and make sure it doesn't contain '\r'
716 std::string line;
717 std::getline(in, line);
718 line.erase(std::remove(line.begin(), line.end(), '\r'), line.end());
721 readGroupFile = (line.length() > ending.length()) &&
722 std::equal(ending.rbegin(), ending.rend(), line.rbegin());
724 // move to the beginning of the file to parse first line too
870 * \brief Construct command line
879 * \brief Construct command line from standard argc, argv pair.
884 * \param argv Command line arguments
906 throw Exception("Failed to parse command line");
911 * \brief Construct command line from string.
915 * \param cmdLine Full command line string.
921 throw Exception("Failed to parse command line");
955 * \brief Parse command line from standard argc, argv pair.
958 * \param argv Command line arguments
1028 * \brief Parse command line from string.
1030 * \param cmdLine Full command line string.
1364 std::string line;
1366 while (std::getline(fileStream, line))
1368 line.erase(std::remove(std::begin(line), std::end(line), '\r'), std::end(line));
1369 cfPaths.push_back(line);