Lines Matching defs:args
32 va_list args;
33 va_start(args, format);
34 vfprintf(stderr, format, args);
35 va_end(args);
253 ResultCode processCommand(std::vector<SkSL::String>& args) {
255 if (args.size() == 4) {
257 const SkSL::String& settingsArg = args[3];
267 } else if (args.size() != 3) {
273 const SkSL::String& inputPath = args[1];
315 const SkSL::String& outputPath = args[2];
513 std::vector<SkSL::String> args = {"skslc"};
523 args.push_back(std::move(line));
526 if (!args.empty()) {
527 ResultCode outcome = processCommand(args);
531 args.resize(1);
537 if (args.size() > 1) {
538 ResultCode outcome = processCommand(args);
555 std::vector<SkSL::String> args;
557 args.push_back(argv[index]);
560 return (int)processCommand(args);