Home | History | Annotate | Download | only in quipper

Lines Matching defs:output

22 // Default output format of this tool is proto text format.
25 // Default output filename is simply stdout.
34 // Parses arguments, storing the results in |input| and |output|. Returns true
37 FormatAndFile* output) {
38 output->filename = kDefaultOutputFilename;
39 output->format = kDefaultOutputFormat;
55 output->filename = optarg;
59 output->format = optarg;
76 << " -o <output filename> -O <output format> -v <verbosity level>";
87 FormatAndFile input, output;
88 if (!ParseArguments(argc, argv, &input, &output)) {
93 if (!quipper::ConvertFile(input, output)) return EXIT_FAILURE;