Lines Matching refs:verbosity
86 void read(std::vector<SpvWord>& spv, const std::string& inFilename, int verbosity)
90 if (verbosity > 0)
120 void read(std::vector<std::string>& strings, const std::string& inFilename, int verbosity)
124 if (verbosity > 0)
145 void write(std::vector<SpvWord>& spv, const std::string& outFile, int verbosity)
152 if (verbosity > 0)
201 int verbosity)
205 read(whiteListStrings, whiteListFile, verbosity);
209 read(spv, inputFiles[ii], verbosity);
211 spv::spirvbin_t(verbosity).remap(spv, whiteListStrings, opts);
216 write(spv, outFile, verbosity);
219 write(spv, outputDirOrFiles[ii], verbosity);
223 if (verbosity > 0)
234 int& verbosity)
239 verbosity = 0;
263 else if (arg == "-vv") { verbosity = 2; ++a; } // verbosity shortcuts
264 else if (arg == "-vvv") { verbosity = 3; ++a; } // ...
265 else if (arg == "-vvvv") { verbosity = 4; ++a; } // ...
266 else if (arg == "-vvvvv") { verbosity = 5; ++a; } // ...
270 verbosity = 1;
279 verbosity = verb;
389 int verbosity;
400 parseCmdLine(argc, argv, inputFiles, outputDirOrFiles, whiteListFile, opts, verbosity);
420 execute(inputFiles, outputDirOrFiles, isSingleOutputDir, whiteListFile, opts, verbosity);