Lines Matching defs:command
115 /// Get the Node for a given command-line path, handling features like
119 /// CollectTarget for all command-line arguments, filling in \a targets.
163 /// Build the targets listed on the command line.
203 /// Run after parsing the command-line flags and potentially changing
227 " -v, --verbose show all command lines while building\n"
228 " --quiet don't show progress status, just command output\n"
745 " -s only print the final command to build [target], not the whole chain\n"
893 string command = edge->EvaluateCommand();
895 return command;
899 return command;
901 size_t index = command.find(rspfile);
903 (command[index - 1] != '@' &&
904 command.find("--option-file=") != index - 14 &&
905 command.find("-f ") != index - 3))
906 return command;
915 if (command[index - 1] == '@') {
916 command.replace(index - 1, rspfile.length() + 1, rspfile_content);
917 } else if (command.find("-f ") == index - 3) {
918 command.replace(index - 3, rspfile.length() + 3, rspfile_content);
920 command.replace(index - 14, rspfile.length() + 14, rspfile_content);
922 return command;
929 printf("\",\n \"command\": \"");
1184 " explain explain what caused a command to execute\n"
1443 /// Parse argv for command-line options.