Lines Matching defs:args
2122 // NarrowArgs helper class that is used to convert wmain() args into UTF-8
2123 // args that are passed to main() at the beginning of program startup. We also use
2154 // Constructor for helper class to convert wmain() UTF-16 args to UTF-8 to
2188 va_list args;
2189 va_start(args, options);
2190 mode = va_arg(args, int);
2191 va_end(args);
2588 // entrypoint. It will convert the args from UTF-16 to UTF-8 and call the
2589 // regular main() with UTF-8 args.
2591 // Convert args from UTF-16 to UTF-8 and pass that to main().