Lines Matching refs:verbosity
78 void read(std::vector<SpvWord>& spv, const std::string& inFilename, int verbosity) in read() argument
82 if (verbosity > 0) in read()
108 void write(std::vector<SpvWord>& spv, const std::string& outFile, int verbosity) in write() argument
115 if (verbosity > 0) in write()
159 int opts, int verbosity) in execute() argument
164 read(spv, filename, verbosity); in execute()
165 spv::spirvbin_t(verbosity).remap(spv, opts); in execute()
169 write(spv, outfile, verbosity); in execute()
172 if (verbosity > 0) in execute()
180 int& verbosity) in parseCmdLine() argument
185 verbosity = 0; in parseCmdLine()
208 else if (arg == "-vv") { verbosity = 2; ++a; } // verbosity shortcuts in parseCmdLine()
209 else if (arg == "-vvv") { verbosity = 3; ++a; } // ... in parseCmdLine()
210 else if (arg == "-vvvv") { verbosity = 4; ++a; } // ... in parseCmdLine()
211 else if (arg == "-vvvvv") { verbosity = 5; ++a; } // ... in parseCmdLine()
215 verbosity = 1; in parseCmdLine()
224 verbosity = verb; in parseCmdLine()
319 int verbosity; in main() local
332 parseCmdLine(argc, argv, inputFile, outputDir, opts, verbosity); in main()
338 execute(inputFile, outputDir, opts, verbosity); in main()