Home | History | Annotate | Download | only in python_gflags

Lines Matching refs:arg_index

1275         for arg_index in range(len(args)):
1276 if ((args[arg_index] == '--' + e.opt) or
1277 (args[arg_index] == '-' + e.opt) or
1278 (args[arg_index].startswith('--' + e.opt + '='))):
1279 unrecognized_opts.append((e.opt, args[arg_index]))
1280 args = args[0:arg_index] + args[arg_index+1:]