Home
last modified time | relevance | path

Searched refs:outOpt (Results 1 – 9 of 9) sorted by relevance

/dports/devel/poco/poco-1.10.1-all/Util/testsuite/src/
H A DOptionTest.cpp42 Option outOpt = Option("output", "o", "specify the output file", true) in testOption() local
72 assertTrue (outOpt.shortName() == "o"); in testOption()
73 assertTrue (outOpt.fullName() == "output"); in testOption()
74 assertTrue (!outOpt.repeatable()); in testOption()
75 assertTrue (outOpt.required()); in testOption()
76 assertTrue (outOpt.argumentName() == "file"); in testOption()
77 assertTrue (outOpt.argumentRequired()); in testOption()
/dports/astro/kosmindoormap/kosmindoormap-21.12.3/src/tools/
H A Dosm-download-data.cpp66 …QCommandLineOption outOpt({QStringLiteral("o"), QStringLiteral("out")}, QStringLiteral("output fil… in main() local
67 parser.addOption(outOpt); in main()
70 if (!parser.isSet(bboxOpt) || !parser.isSet(outOpt)) { in main()
96 QFile f(parser.value(outOpt)); in main()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/langtools/test/tools/javac/
H A DT6413876.java39 private static void test(String outOpt) { in test() argument
43 int rc = t.run(null, null, null, outOpt, "NotADir", file.getPath()); in test()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/langtools/test/tools/javac/
H A DT6413876.java39 private static void test(String outOpt) { in test() argument
43 int rc = t.run(null, null, null, outOpt, "NotADir", file.getPath()); in test()
/dports/security/john/john-1.9.0-jumbo-1/run/
H A Dpdf2john.pl145 my $outOpt; # output file or directory name
338 undef $outOpt;
789 $outOpt = shift;
791 CleanFilename($outOpt);
993 unless ((@tags and not $outOpt) or @files or @newValues) {
999 if ($outOpt) {
1039 if ($overwriteOrig > 1 and $outOpt) {
1130 unless ($outOpt) {
1250 unless ($isWriting or $outOpt or @tags) {
1260 if ($isWriting and @tags and not $outOpt) {
[all …]
/dports/graphics/p5-Image-ExifTool/Image-ExifTool-12.30/
H A Dexiftool481 undef $outOpt;
1084 $outOpt = shift;
1086 CleanFilename($outOpt);
1378 if ($outOpt) {
1418 if ($overwriteOrig > 1 and $outOpt) {
1536 unless ($outOpt) {
1710 if ($outOpt) {
1711 my $type = GetFileType($outOpt);
1931 unless (length $orig or $outOpt) {
2715 if (defined $outOpt) {
[all …]
/dports/graphics/p5-Image-ExifTool-devel/Image-ExifTool-12.14/
H A Dexiftool477 undef $outOpt;
1075 $outOpt = shift;
1077 CleanFilename($outOpt);
1369 if ($outOpt) {
1409 if ($overwriteOrig > 1 and $outOpt) {
1528 unless ($outOpt) {
1702 if ($outOpt) {
1703 my $type = GetFileType($outOpt);
1923 unless (length $orig or $outOpt) {
2694 if (defined $outOpt) {
[all …]
/dports/devel/fossil/fossil-src-2.17/src/
H A Djson.c194 pDest, pOpt ? pOpt : &g.json.outOpt ); in cson_output_Blob()
654 cson_output( pResponse, cson_data_dest_cgi, NULL, &g.json.outOpt ); in json_send_response()
662 cson_output_FILE( pResponse, stdout, &g.json.outOpt ); in json_send_response()
1126 g.json.outOpt.indentation = (0>indent) in json_bootstrap_late()
1129 g.json.outOpt.addNewline = g.isHTTP in json_bootstrap_late()
1616 cson_output( resp, cson_data_dest_cgi, NULL, &g.json.outOpt ); in json_err()
H A Dmain.c291 cson_output_opt outOpt; /* formatting options for JSON mode. */ member
722 g.json.outOpt = cson_output_opt_empty; in fossil_main()
723 g.json.outOpt.addNewline = 1; in fossil_main()
724 g.json.outOpt.indentation = 1 /* in CGI/server mode this can be configured */; in fossil_main()