Home
last modified time | relevance | path

Searched refs:option_file (Results 1 – 25 of 147) sorted by relevance

123456

/dports/graphics/geomorph/geomorph-0.60.1/src/app/
H A Dmain.c121 gchar *msg = NULL,*option_file = NULL, *buf, *dir, *default_dir=NULL; in main() local
154 option_file = argv[i]; in main()
180 if (!option_file) // option_file name was not given on the command line in main()
181 option_file = OPTION_FILE; in main()
182 if (!strchr(option_file, FILESEP)) { // Append the directory name if required in main()
184 buf = x_malloc(strlen(dir)+strlen(option_file)+2, "gchar - Option file name)"); in main()
188 strcat(buf,option_file); in main()
189 option_file = buf; in main()
204 …pp = app_new (_("GeoMorph 0.x - a height field creator for Linux"), opt, allowed_opt, option_file); in main()
215 buf = x_malloc(strlen(dir)+strlen(option_file)+2, "gchar (buf - Option file name 2)"); in main()
/dports/textproc/aspell-ispell/aspell-0.60.8/lib/
H A Dnew_filter.cpp260 String option_file = filter_name; in get_new() local
261 option_file += "-filter.info"; in get_new()
262 if (!find_file(config, "filter-path", option_file)) in get_new()
266 RET_ON_ERR(options.open(option_file,"r")); in get_new()
279 return make_err(confusing_version).with_file(option_file,d.line_num); in get_new()
282 if (peb.has_err()) return peb.with_file(option_file,d.line_num); in get_new()
312 return make_err(identical_option).with_file(option_file,d.line_num); in get_new()
364 return make_err(options_only).with_file(option_file,d.line_num); in get_new()
455 const char * slash = strrchr(option_file.str(), '/'); in get_new()
458 module->file.assign(option_file.str(), slash + 1 - option_file.str()); in get_new()
[all …]
/dports/textproc/aspell/aspell-0.60.8/lib/
H A Dnew_filter.cpp260 String option_file = filter_name; in get_new() local
261 option_file += "-filter.info"; in get_new()
262 if (!find_file(config, "filter-path", option_file)) in get_new()
266 RET_ON_ERR(options.open(option_file,"r")); in get_new()
279 return make_err(confusing_version).with_file(option_file,d.line_num); in get_new()
282 if (peb.has_err()) return peb.with_file(option_file,d.line_num); in get_new()
312 return make_err(identical_option).with_file(option_file,d.line_num); in get_new()
364 return make_err(options_only).with_file(option_file,d.line_num); in get_new()
455 const char * slash = strrchr(option_file.str(), '/'); in get_new()
458 module->file.assign(option_file.str(), slash + 1 - option_file.str()); in get_new()
[all …]
/dports/devel/p5-Heap-Simple-Perl/Heap-Simple-Perl-0.14/t/
H A D99_speed.t27 my $option_file = "$Bin/options";
29 open(my $fh, "< $option_file") || die "Could not open '$option_file': $!";
37 die "Could not parse line $. of $option_file\n";
41 close($fh) || die "Could not close '$option_file': $!";
/dports/devel/p5-Heap-Simple-XS/Heap-Simple-XS-0.10/t/
H A D99_speed.t26 my $option_file = "$Bin/options";
28 open(my $fh, $option_file) || die "Could not open '$option_file': $!";
36 die "Could not parse line $. of $option_file\n";
40 close($fh) || die "Could not close '$option_file': $!";
/dports/chinese/aterm/aterm-1.0.1/scripts/
H A Dslidshow37 option_file="$1"
108 if test -z "$*" && test -z "$option_file"; then
122 if test -n "$option_file"; then
123 opts=`cat $option_file`
/dports/x11/aterm/aterm-1.0.1/scripts/
H A Dslidshow37 option_file="$1"
108 if test -z "$*" && test -z "$option_file"; then
122 if test -n "$option_file"; then
123 opts=`cat $option_file`
/dports/net/samba412/samba-4.12.15/source4/heimdal/lib/asn1/
H A Dmain.c69 char *option_file; variable
80 { "option-file", 0, arg_string, &option_file },
136 if (option_file) { in main()
140 opt = fopen(option_file, "r"); in main()
151 arg[0] = option_file; in main()
/dports/devel/p5-Heap-Simple-Perl/Heap-Simple-Perl-0.14/
H A DMakefile.PL37 my $option_file = "t/options";
38 my $new = "$option_file.new.$$";
45 rename($new, $option_file) ||
46 die "Could not rename '$new' to '$option_file': $!";
/dports/devel/p5-Heap-Simple-XS/Heap-Simple-XS-0.10/
H A DMakefile.PL36 my $option_file = "t/options";
37 my $new = "$option_file.new.$$";
44 rename($new, $option_file) ||
45 die "Could not rename '$new' to '$option_file': $!";
/dports/net/samba412/samba-4.12.15/source4/heimdal_build/
H A Dwscript_build30 option_file=None,
39 if option_file:
40 option_file = heimdal_path(option_file)
73 if option_file is not None:
74 source.append(option_file)
93 if option_file is not None:
95 os.path.normpath(os.path.join(bld.path.abspath(), option_file))
699 option_file='lib/asn1/krb5.opt',
710 option_file='lib/asn1/cms.opt',
/dports/devel/meson/stage/usr/local/lib/python3.8/site-packages/mesonbuild/
H A Doptinterpreter.py64 def process(self, option_file: str) -> None:
66 with open(option_file, encoding='utf-8') as f:
67 ast = mparser.Parser(f.read(), option_file).parse()
69 me.file = option_file
74 e.file = option_file
83 e.file = option_file
87 str(e), lineno=cur.lineno, colno=cur.colno, file=option_file)
/dports/devel/meson/meson-0.60.3/build/lib/mesonbuild/
H A Doptinterpreter.py64 def process(self, option_file: str) -> None:
66 with open(option_file, encoding='utf-8') as f:
67 ast = mparser.Parser(f.read(), option_file).parse()
69 me.file = option_file
74 e.file = option_file
83 e.file = option_file
87 str(e), lineno=cur.lineno, colno=cur.colno, file=option_file)
/dports/devel/meson/meson-0.60.3/mesonbuild/
H A Doptinterpreter.py64 def process(self, option_file: str) -> None:
66 with open(option_file, encoding='utf-8') as f:
67 ast = mparser.Parser(f.read(), option_file).parse()
69 me.file = option_file
74 e.file = option_file
83 e.file = option_file
87 str(e), lineno=cur.lineno, colno=cur.colno, file=option_file)
/dports/emulators/qemu60/qemu-6.0.0/meson/mesonbuild/
H A Doptinterpreter.py141 def process(self, option_file): argument
143 with open(option_file, 'r', encoding='utf8') as f:
144 ast = mparser.Parser(f.read(), option_file).parse()
146 me.file = option_file
151 e.file = option_file
159 e.file = option_file
/dports/emulators/qemu5/qemu-5.2.0/meson/mesonbuild/
H A Doptinterpreter.py141 def process(self, option_file): argument
143 with open(option_file, 'r', encoding='utf8') as f:
144 ast = mparser.Parser(f.read(), option_file).parse()
146 me.file = option_file
151 e.file = option_file
159 e.file = option_file
/dports/emulators/qemu/qemu-6.2.0/meson/mesonbuild/
H A Doptinterpreter.py127 def process(self, option_file: str) -> None:
129 with open(option_file, encoding='utf-8') as f:
130 ast = mparser.Parser(f.read(), option_file).parse()
132 me.file = option_file
137 e.file = option_file
145 e.file = option_file
149 str(e), lineno=cur.lineno, colno=cur.colno, file=option_file)
/dports/emulators/qemu-devel/qemu-de8ed1055c2ce18c95f597eb10df360dcb534f99/meson/mesonbuild/
H A Doptinterpreter.py143 def process(self, option_file: str) -> None:
145 with open(option_file, encoding='utf-8') as f:
146 ast = mparser.Parser(f.read(), option_file).parse()
148 me.file = option_file
153 e.file = option_file
161 e.file = option_file
165 str(e), lineno=cur.lineno, colno=cur.colno, file=option_file)
/dports/devel/p5-App-Options/App-Options-1.12/lib/App/
H A DOptions.pm587 push(@option_files, $values->{option_file}) if ($values->{option_file});
1115 my ($option_file, $exclude_section, $var, @env_vars, $env_var, $value, $regexp);
1120 $option_file = shift(@$option_files);
1121 if ($option_file =~ m!\$\{prefix\}!) {
1123 $option_file =~ s!\$\{prefix\}!$values->{prefix}!;
1126 $option_file =~ s!\$\{prefix\}!$prefix!;
1130 print STDERR " Looking for Option File [$option_file]" if ($debug_options);
1131 if (open(App::Options::FILE, "< $option_file")) {
1292 …ecurity_policy_level} && $values->{security_policy_level} >= 2 && !&file_is_secure($option_file)) {
1294 print " File: [$option_file]\n";
/dports/games/freeorion/freeorion-0.4.10.2/default/python/common/
H A Doption_tools.py25 option_file = CONFIG_DEFAULT_FILE
26 if ai_path and option_file:
27 return os.path.join(ai_path, option_file)
/dports/devel/pylint/pylint-2.12.1/pylint/testutils/
H A Dfunctional_test_file.py46 cp.read(self.option_file)
55 def option_file(self): member in FunctionalTestFile
/dports/biology/sra-tools/sra-tools-2.11.0/tools/driver-tool/
H A Dsupport2.hpp325 ncbi::String option_file; member
372 cmdline . addOption ( option_file, nullptr, "", "option-file", "file", in add()
388 if ( !option_file.isEmpty() ) ss << "option-file: " << option_file << std::endl; in show()
402 if ( !option_file.isEmpty() ) builder . add_option( "--option-file", option_file ); in populate_common_argv_builder()
/dports/devel/py-game/pygame-2.1.0/test/test_utils/
H A Drun_tests.py115 option_file = options.pop("file", None)
320 if option_file is not None:
321 results_file = open(option_file, "w")
/dports/mail/postfix-current/postfix-3.7-20211107/src/global/
H A Ddict_mysql.c232 char *option_file; member
669 if (dict_mysql->option_file) in plmysql_connect_single()
670 mysql_options(host->db, MYSQL_READ_DEFAULT_FILE, dict_mysql->option_file); in plmysql_connect_single()
739 dict_mysql->option_file = cfg_get_str(p, "option_file", NULL, 0, 0); in mysql_parse_config()
920 if (dict_mysql->option_file) in dict_mysql_close()
921 myfree(dict_mysql->option_file); in dict_mysql_close()
/dports/games/polyglot/polyglot-1.4.70b/
H A Dmain.c482 char option_file[StringSize]; in main() local
492 my_path_join(option_file, in main()
496 option_set(Option,"SettingsFile",option_file); in main()
499 if(ini_parse(ini,option_file)){ in main()

123456