Home
last modified time | relevance | path

Searched refs:opt_index (Results 1 – 4 of 4) sorted by relevance

/external/bison/lib/
Dgetopt1.c41 const struct option *long_options, int *opt_index) in getopt_long() argument
44 opt_index, 0, 0); in getopt_long()
49 const struct option *long_options, int *opt_index, in _getopt_long_r() argument
52 return _getopt_internal_r (argc, argv, options, long_options, opt_index, in _getopt_long_r()
64 const struct option *long_options, int *opt_index) in getopt_long_only() argument
67 opt_index, 1, 0); in getopt_long_only()
72 const struct option *long_options, int *opt_index, in _getopt_long_only_r() argument
75 return _getopt_internal_r (argc, argv, options, long_options, opt_index, in _getopt_long_only_r()
/external/grub/lib/
Dgetopt1.c69 getopt_long (argc, argv, options, long_options, opt_index) in getopt_long() argument
74 int *opt_index;
76 return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
85 getopt_long_only (argc, argv, options, long_options, opt_index) in getopt_long_only() argument
90 int *opt_index;
92 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
/external/v8/src/
Ddebug-debugger.js965 ExecutionState.prototype.frame = function(opt_index) { argument
967 if (opt_index == null) opt_index = this.selected_frame;
968 if (opt_index < 0 || opt_index >= this.frameCount()) {
971 return new FrameMirror(this.break_id, opt_index);
/external/qemu/
Dqemu-io.c1748 int opt_index = 0; in main() local
1753 while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) { in main()