Lines Matching defs:line
35 // Status and actions to perform after parsing command-line arguments.
368 specifying all the flags on the command line. For example,
386 that position in the command line. For example, the invocation
557 // Reads command-line flags the file specified in |oconfig_flag|. This string
582 std::string line;
583 while (std::getline(input_file, line)) {
585 if (line.length() == 0 || line[0] == '#') {
589 // Tokenize the line. Add all found tokens to the list of found flags. This
590 // mimics the way the shell will parse whitespace on the command line. NOTE:
592 std::istringstream iss(line);
674 // passes that need extra arguments in its command-line flag, please make them
690 // Parses command-line flags. |argc| contains the number of command-line flags.