Home
last modified time | relevance | path

Searched refs:nonopts (Results 1 – 16 of 16) sorted by relevance

/dports/misc/bestfit/bestfit-0.2.0/src/
H A Dbestfit.c192 char **nonopts; in main() local
266 nonopts[nonoptscount++] = optarg; in main()
288 if (directories_only && !is_directory(nonopts[i])) { in main()
292 nonopts[j] = nonopts[j+1]; in main()
297 verbose_printf(2, "scanning `%s': ", nonopts[i]); in main()
310 nonopts[j] = nonopts[j+1]; in main()
333 verbose_printf(2, "%s\n", nonopts[i]); in main()
334 execute_command(nonopts[i], &argv[optind]); in main()
336 printf("%s\n", nonopts[i]); in main()
340 verbose_printf(2, "include `%s'\n", nonopts[i]); in main()
[all …]
/dports/devel/lua-stdlib/lua-stdlib-release-v41.2.2/build-aux/
H A Dmkrockspecs179 local nonopts
185 -- Collect remaining arguments not nonopts to save back into _G.arg later.
186 if type (nonopts) == "table" then
187 table.insert (nonopts, opt)
195 nonopts = {}
203 nonopts = { opt }
208 nonopts = nonopts or {}
209 nonopts[0] = arg[0]
210 _G.arg = nonopts
/dports/www/aria2/aria2-1.36.0/test/
H A DOptionParserTest.cc174 std::vector<std::string> nonopts; in testParseArg() local
176 oparser_->parseArg(s, nonopts, argc, argv); in testParseArg()
182 CPPUNIT_ASSERT_EQUAL((size_t)2, nonopts.size()); in testParseArg()
183 CPPUNIT_ASSERT_EQUAL(std::string("nonopt1"), nonopts[0]); in testParseArg()
184 CPPUNIT_ASSERT_EQUAL(std::string("nonopt2"), nonopts[1]); in testParseArg()
/dports/textproc/colordiff/colordiff-1.0.19/
H A Dcolordiff.pl93 my $nonopts = 0;
102 $nonopts++;
106 $nonopts++;
109 $nonopts++;
112 return $nonopts;
/dports/japanese/bookview/bookview-3.2.1/tools/
H A Dgetopt_long.pl181 @getopt_long'nonopts = ();
218 push(@getopt_long'nonopts, shift(@ARGV));
/dports/japanese/ebnetd/ebnetd-1.0/ebnetd/
H A Dgetopt_long.pl182 @getopt_long'nonopts = ();
219 push(@getopt_long'nonopts, shift(@ARGV));
/dports/games/opentyrian/opentyrian-opentyrian-77a8715634e3/src/
H A Darg_parse.c92 const int nonopts = *first_opt - *first_nonopt; in permute() local
110 *first_opt -= nonopts; in permute()
/dports/www/aria2/aria2-1.36.0/src/
H A DOptionParser.h68 void parseArg(std::ostream& out, std::vector<std::string>& nonopts, int argc,
H A DOptionParser.cc156 std::vector<std::string>& nonopts, int argc, in parseArg() argument
234 std::copy(argv + optind, argv + argc, std::back_inserter(nonopts)); in parseArg()
/dports/net/rclone/rclone-1.57.0/vendor/github.com/billziss-gh/cgofuse/fuse/
H A Dhost_cgo.go833 nonopts c_bool) c_int {
834 return C.hostOptParse(args, data, opts, nonopts)
H A Dhost.go872 var nonopts bool
875 nonopts = true
934 if -1 == c_hostOptParse(&fuse_args, data, &fuse_opts[0], c_bool(nonopts)) {
980 if nonopts && 1 <= len(outargs) && "--" == outargs[0] {
H A Dhost_nocgo_windows.go522 nonopts c_bool) c_int {
524 if nonopts {
/dports/sysutils/lsyncd/lsyncd-release-2.2.3/
H A Dlsyncd.lua4799 local nonopts = { }
4809 table.insert( nonopts, args[ i ] )
4862 if #nonopts ~= 0
4869 if #nonopts == 0
4872 elseif #nonopts == 1
4874 return nonopts[ 1 ]
/dports/lang/ruby26/ruby-2.6.9/lib/
H A Doptparse.rb1655 nonopts = []
1656 order!(argv, into: into, &nonopts.method(:<<))
1657 argv[0, 0] = nonopts
/dports/lang/ghc/ghc-8.10.7/utils/ghc-pkg/
H A DMain.hs135 (cli,nonopts,[]) ->
137 Right v -> runit v cli nonopts
367 runit verbosity cli nonopts = do
434 case nonopts of
/dports/lang/ruby26/ruby-2.6.9/
H A Dprocess.c2192 VALUE nonopts = args[1]; in check_exec_options_i_extract() local
2193 if (NIL_P(nonopts)) args[1] = nonopts = rb_hash_new(); in check_exec_options_i_extract()
2194 rb_hash_aset(nonopts, key, val); in check_exec_options_i_extract()