Lines Matching full:verbosity
78 void read(std::vector<SpvWord>& spv, const std::string& inFilename, int verbosity) in read() argument
82 if (verbosity > 0) in read()
109 void read(std::vector<std::string>& strings, const std::string& inFilename, int verbosity) in read() argument
113 if (verbosity > 0) in read()
134 void write(std::vector<SpvWord>& spv, const std::string& outFile, int verbosity) in write() argument
141 if (verbosity > 0) in write()
186 const std::string& whiteListFile, int opts, int verbosity) in execute() argument
190 read(whiteListStrings, whiteListFile, verbosity); in execute()
195 read(spv, filename, verbosity); in execute()
196 spv::spirvbin_t(verbosity).remap(spv, whiteListStrings, opts); in execute()
198 write(spv, outfile, verbosity); in execute()
201 if (verbosity > 0) in execute()
210 int& verbosity) in parseCmdLine() argument
215 verbosity = 0; in parseCmdLine()
238 else if (arg == "-vv") { verbosity = 2; ++a; } // verbosity shortcuts in parseCmdLine()
239 else if (arg == "-vvv") { verbosity = 3; ++a; } // ... in parseCmdLine()
240 else if (arg == "-vvvv") { verbosity = 4; ++a; } // ... in parseCmdLine()
241 else if (arg == "-vvvvv") { verbosity = 5; ++a; } // ... in parseCmdLine()
245 verbosity = 1; in parseCmdLine()
254 verbosity = verb; in parseCmdLine()
353 int verbosity; in main() local
366 parseCmdLine(argc, argv, inputFile, outputDir, whiteListFile, opts, verbosity); in main()
372 execute(inputFile, outputDir, whiteListFile, opts, verbosity); in main()