Home
last modified time | relevance | path

Searched refs:this_arg (Results 1 – 25 of 401) sorted by relevance

12345678910>>...17

/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/src/merge/
H A Dmkvmerge.cpp2160 if ((this_arg == "-l") || (this_arg == "--list-types")) { in parse_args()
2188 if ((this_arg == "-o") || (this_arg == "--output")) { in parse_args()
2205 } else if ((this_arg == "-w") || (this_arg == "--webm")) in parse_args()
2473 else if ((this_arg == "-A") || (this_arg == "--noaudio") || (this_arg == "--no-audio")) in parse_args()
2476 else if ((this_arg == "-D") || (this_arg == "--novideo") || (this_arg == "--no-video")) in parse_args()
2479 …else if ((this_arg == "-S") || (this_arg == "--nosubs") || (this_arg == "--no-subs") || (this_arg in parse_args()
2482 else if ((this_arg == "-B") || (this_arg == "--nobuttons") || (this_arg == "--no-buttons")) in parse_args()
2488 else if ((this_arg == "-a") || (this_arg == "--atracks") || (this_arg == "--audio-tracks")) { in parse_args()
2495 } else if ((this_arg == "-d") || (this_arg == "--vtracks") || (this_arg == "--video-tracks")) { in parse_args()
2502 …} else if ((this_arg == "-s") || (this_arg == "--stracks") || (this_arg == "--sub-tracks") || (thi… in parse_args()
[all …]
/dports/net-mgmt/aircrack-ng/aircrack-ng-1.5.2/src/aircrack-osdep/radiotap/
H A Dparse.c37 printf("\tTSFT: %llu\n", le64toh(*(unsigned long long *)iter->this_arg)); in print_radiotap_namespace()
40 printf("\tflags: %02x\n", *iter->this_arg); in print_radiotap_namespace()
43 printf("\trate: %lf\n", (double)*iter->this_arg/2); in print_radiotap_namespace()
61 le32toh(*(uint32_t *)iter->this_arg)); in print_radiotap_namespace()
65 le16toh(*(uint16_t *)iter->this_arg)); in print_radiotap_namespace()
83 *iter->this_arg, *(iter->this_arg + 1), in print_test_namespace()
84 *(iter->this_arg + 2), *(iter->this_arg + 3)); in print_test_namespace()
141 iter.this_arg[0], iter.this_arg[1], in main()
142 iter.this_arg[2], iter.this_arg[3], in main()
149 printf("%.2x", iter.this_arg[i]); in main()
/dports/print/texlive-base/texlive-20150521-source/texk/texlive/linked_scripts/musixtex/
H A Dmusixtex.lua99 this_arg = arg[narg]
100 if this_arg == "-v" then
102 elseif this_arg == "-h" then
105 elseif this_arg == "-l" then
111 elseif this_arg == "-p" then
118 elseif this_arg == "-d" then
120 elseif this_arg == "-s" then
122 elseif this_arg == "-i" then
124 elseif this_arg == "-1" then
126 elseif this_arg == "-f" then
[all …]
/dports/print/texlive-base/texlive-20150521-source/texk/texlive/linked_scripts/m-tx/
H A Dm-tx.lua86 this_arg = arg[narg]
87 if this_arg == "-v" then
89 elseif this_arg == "-h" then
92 elseif this_arg == "-l" then
98 elseif this_arg == "-p" then
105 elseif this_arg == "-d" then
107 elseif this_arg == "-c" then
109 elseif this_arg == "-F" then
112 elseif this_arg == "-s" then
114 elseif this_arg == "-i" then
[all …]
/dports/print/texlive-base/texlive-20150521-source/texk/texlive/linked_scripts/pmx/
H A Dpmx2pdf.lua86 this_arg = arg[narg]
87 if this_arg == "-v" then
89 elseif this_arg == "-h" then
92 elseif this_arg == "-l" then
98 elseif this_arg == "-p" then
105 elseif this_arg == "-d" then
107 elseif this_arg == "-s" then
109 elseif this_arg == "-f" then
111 elseif this_arg == "-t" then
113 elseif this_arg == "-i" then
[all …]
/dports/print/texlive-base/texlive-20150521-source/texk/texlive/linked_scripts/ptex2pdf/
H A Dptex2pdf.lua253 this_arg = arg[narg]
254 if this_arg == "-v" then
263 elseif this_arg == "-h" then
269 elseif this_arg == "-e" then
271 elseif this_arg == "-u" then
273 elseif this_arg == "-l" then
275 elseif this_arg == "-s" then
277 elseif this_arg == "-i" then
279 elseif this_arg == "-ot" then
282 elseif this_arg == "-od" then
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/bindings/tests/results/core/
H A Dv8_test_callback_interface.cc98 v8::Local<v8::Value> this_arg; in voidMethod() local
103 this_arg = CallbackObject(); in voidMethod()
123 this_arg, in voidMethod()
231 this_arg, in booleanMethod()
356 this_arg, in voidMethodBooleanArg()
469 this_arg, in voidMethodSequenceArg()
582 this_arg, in voidMethodFloatArg()
695 this_arg, in voidMethodTestInterfaceEmptyArg()
809 this_arg, in voidMethodTestInterfaceEmptyStringArg()
922 this_arg, in callbackWithThisValueVoidMethodStringArg()
[all …]
/dports/irc/epic4/epic4-2.10.9/source/
H A Ddebug.c86 char *this_arg; in BUILT_IN_COMMAND() local
107 this_arg = upper(next_arg(args, &args)); in BUILT_IN_COMMAND()
108 if (*this_arg == '-') in BUILT_IN_COMMAND()
109 rem = 1, this_arg++; in BUILT_IN_COMMAND()
110 else if (*this_arg == '+') in BUILT_IN_COMMAND()
111 rem = 0, this_arg++; in BUILT_IN_COMMAND()
115 if (!strncmp(this_arg, opts[cnt].command, strlen(this_arg))) in BUILT_IN_COMMAND()
125 say("Unrecognized XDEBUG option '%s'", this_arg); in BUILT_IN_COMMAND()
H A Dhelp.c88 static const char * this_arg; variable
395 this_arg = next_arg(args, &args); in help_me()
410 if (!this_arg) in help_me()
428 while (this_arg) in help_me()
432 if (!*this_arg) in help_me()
435 if (strcmp(this_arg, "?") == 0) in help_me()
437 this_arg = empty_string; in help_me()
499 const char *str2 = this_arg; in help_me()
545 help_put_it(this_arg, "*** No help available on %s: Use ? for list of topics", this_arg); in help_me()
577 if (!(this_arg = next_arg(args, &args))) in help_me()
[all …]
/dports/archivers/zoo/zoo-2.10.1_4/
H A Dmakelist.c68 char *this_arg; local
69 this_arg = emalloc (strlen (*argv) + WCLEN);
70 strcpy (this_arg, *argv);
75 str_lwr (this_arg);
79 pat_name = str_dup (nameptr (this_arg)); /* pattern without path */
96 fixslash (this_arg); /* convert backslashes to slashes */
99 if (*lastptr(this_arg) == *(char *) PATH_CH) {
100 strcat (this_arg, WILDCARD);
104 spec_wild (this_arg);
106 strcpy (nameptr (this_arg), WILDCARD);
[all …]
/dports/irc/epic5/epic5-2.1.6/source/
H A Ddebug.c96 char * this_arg; in BUILT_IN_COMMAND() local
118 this_arg = upper(next_arg(args, &args)); in BUILT_IN_COMMAND()
119 if (*this_arg == '-') in BUILT_IN_COMMAND()
120 rem = 1, this_arg++; in BUILT_IN_COMMAND()
121 else if (*this_arg == '+') in BUILT_IN_COMMAND()
122 rem = 0, this_arg++; in BUILT_IN_COMMAND()
126 if (!strncmp(this_arg, opts[cnt].command, in BUILT_IN_COMMAND()
127 strlen(this_arg))) in BUILT_IN_COMMAND()
137 say("Unrecognized XDEBUG option '%s'", this_arg); in BUILT_IN_COMMAND()
/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/src/mpt/format/
H A Dmessage.hpp68 std::size_t this_arg = 0; in do_format() local
91 this_arg = last_arg; in do_format()
98 if (this_arg > max_arg) { in do_format()
99 max_arg = this_arg; in do_format()
122 if (this_arg > max_arg) { in do_format()
123 max_arg = this_arg; in do_format()
219 std::size_t this_arg = 0; local
242 this_arg = last_arg;
244 if (this_arg > max_arg)
246 max_arg = this_arg;
[all …]
/dports/biology/viennarna/ViennaRNA-2.4.18/src/RNAforester/src/frontend/
H A DArguments.cpp101 std::string this_arg = argv[i]; in Arguments() local
104 std::string::size_type colon = this_arg.find(':'); in Arguments()
106 colon = this_arg.find('='); in Arguments()
112 this_arg.substr(0, colon), in Arguments()
113 std::make_pair(this_arg.substr(colon + 1), true) in Arguments()
122 if (std::binary_search(s_spaceArgs.begin(), s_spaceArgs.end(), this_arg)) { in Arguments()
126 this_arg, in Arguments()
131 this_arg, in Arguments()
143 this_arg, in Arguments()
/dports/irc/scrollz/ScrollZ-ScrollZ-2.3/source/
H A Dhelp.c93 static char *this_arg; variable
125 if (my_strnicmp((char *) entry->d_name, this_arg, strlen(this_arg)))
570 this_arg = next_arg(args, &args);
585 if (!this_arg) /* && *help_topic_list) */
592 while (this_arg)
596 if (*this_arg == (char) 0)
598 if (strcmp(this_arg, "?") == 0)
600 this_arg = empty_string;
629 malloc_strcpy(&arg_z, this_arg);
665 help_put_it(this_arg, "*** No help available on %s: Use ? for list of topics", this_arg);
[all …]
/dports/chinese/bitchx/bitchx-1.2.1/source/
H A Dhelp.c77 static char * this_arg; variable
390 if (!this_arg) in help_me()
405 while (this_arg) in help_me()
410 if (!*this_arg) in help_me()
413 if (strcmp(this_arg, "?") == 0) in help_me()
415 this_arg = empty_string; in help_me()
439 strlen(this_arg) + 3); in help_me()
440 strcpy(pattern, this_arg); in help_me()
477 char *str2 = this_arg; in help_me()
522 help_put_it(this_arg, "*** No help available on %s: Use ? for list of topics", this_arg); in help_me()
[all …]
H A Ddebug.c73 char *this_arg; in BUILT_IN_COMMAND() local
94 this_arg = upper(next_arg(args, &args)); in BUILT_IN_COMMAND()
95 if (*this_arg == '-') in BUILT_IN_COMMAND()
96 remove = 1, this_arg++; in BUILT_IN_COMMAND()
97 else if (*this_arg == '+') in BUILT_IN_COMMAND()
98 this_arg++; in BUILT_IN_COMMAND()
102 if (!strncmp(this_arg, opts[cnt].command, strlen(this_arg))) in BUILT_IN_COMMAND()
112 say("Unrecognized XDEBUG option '%s'", this_arg); in BUILT_IN_COMMAND()
/dports/irc/bitchx/bitchx-1.2.1/source/
H A Dhelp.c77 static char * this_arg; variable
390 if (!this_arg) in help_me()
405 while (this_arg) in help_me()
410 if (!*this_arg) in help_me()
413 if (strcmp(this_arg, "?") == 0) in help_me()
415 this_arg = empty_string; in help_me()
439 strlen(this_arg) + 3); in help_me()
440 strcpy(pattern, this_arg); in help_me()
477 char *str2 = this_arg; in help_me()
522 help_put_it(this_arg, "*** No help available on %s: Use ? for list of topics", this_arg); in help_me()
[all …]
H A Ddebug.c73 char *this_arg; in BUILT_IN_COMMAND() local
94 this_arg = upper(next_arg(args, &args)); in BUILT_IN_COMMAND()
95 if (*this_arg == '-') in BUILT_IN_COMMAND()
96 remove = 1, this_arg++; in BUILT_IN_COMMAND()
97 else if (*this_arg == '+') in BUILT_IN_COMMAND()
98 this_arg++; in BUILT_IN_COMMAND()
102 if (!strncmp(this_arg, opts[cnt].command, strlen(this_arg))) in BUILT_IN_COMMAND()
112 say("Unrecognized XDEBUG option '%s'", this_arg); in BUILT_IN_COMMAND()
/dports/security/botan110/Botan-1.10.17/doc/examples/
H A Dbase64.cpp37 std::string this_arg = argv[j]; in main() local
39 if(this_arg == "-w") in main()
41 else if(this_arg == "-e"); in main()
42 else if(this_arg == "-d") in main()
44 else if(this_arg == "-c") in main()
/dports/irc/ircII/ircii-20210314/source/
H A Dhelp.c77 static u_char *this_arg; variable
108 if (my_strnicmp((u_char *)entry->d_name, this_arg, my_strlen(this_arg))) in selectent()
490 this_arg = next_arg(args, &args); in help_me()
501 if (!this_arg) /* && *help_topic_list) */ in help_me()
508 while (this_arg) in help_me()
512 if (*this_arg == '\0') in help_me()
514 if (my_strcmp(this_arg, "?") == 0) in help_me()
516 this_arg = empty_string(); in help_me()
541 malloc_strcpy(&arg_z, this_arg); in help_me()
578 help_no_help(this_arg); in help_me()
[all …]
/dports/irc/ninja/ninja-1.5.8.1/source/
H A Dhelp.c112 static u_char *this_arg; variable
144 if (my_strnicmp((u_char *)entry->d_name, this_arg, my_strlen(this_arg)))
607 this_arg = next_arg(args, &args);
623 if (!this_arg) /* && *help_topic_list) */
630 while (this_arg)
634 if (*this_arg == (u_char) 0)
636 if (my_strcmp(this_arg, "?") == 0)
638 this_arg = empty_string;
664 malloc_strcpy(&arg_z, this_arg);
700 help_put_it(this_arg, "*** No help available on %s: Use ? for list of topics", this_arg);
[all …]
/dports/lang/gcc48/gcc-4.8.5/gcc/java/
H A Dbuiltins.c239 tree this_arg, obj_arg, offset_arg; \
243 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
255 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
269 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
291 build_check_this (tree stmt, tree this_arg) in build_check_this() argument
294 java_check_reference (this_arg, 1), stmt); in build_check_this()
313 return build_check_this (stmt, this_arg); in putObject_builtin()
332 return build_check_this (stmt, this_arg); in compareAndSwapInt_builtin()
358 return build_check_this (stmt, this_arg); in compareAndSwapLong_builtin()
381 return build_check_this (stmt, this_arg); in compareAndSwapObject_builtin()
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/java/
H A Dbuiltins.c241 tree this_arg, obj_arg, offset_arg; \
245 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
257 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
271 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
293 build_check_this (tree stmt, tree this_arg) in build_check_this() argument
296 java_check_reference (this_arg, 1), stmt); in build_check_this()
315 return build_check_this (stmt, this_arg); in putObject_builtin()
334 return build_check_this (stmt, this_arg); in compareAndSwapInt_builtin()
360 return build_check_this (stmt, this_arg); in compareAndSwapLong_builtin()
383 return build_check_this (stmt, this_arg); in compareAndSwapObject_builtin()
[all …]
/dports/lang/gnat_util/gcc-6-20180516/gcc/java/
H A Dbuiltins.c238 tree this_arg, obj_arg, offset_arg; \
242 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
254 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
268 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
290 build_check_this (tree stmt, tree this_arg) in build_check_this() argument
293 java_check_reference (this_arg, 1), stmt); in build_check_this()
312 return build_check_this (stmt, this_arg); in putObject_builtin()
331 return build_check_this (stmt, this_arg); in compareAndSwapInt_builtin()
357 return build_check_this (stmt, this_arg); in compareAndSwapLong_builtin()
380 return build_check_this (stmt, this_arg); in compareAndSwapObject_builtin()
[all …]
/dports/devel/mingw32-gcc/gcc-4.8.1/gcc/java/
H A Dbuiltins.c239 tree this_arg, obj_arg, offset_arg; \
243 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
255 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
269 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
291 build_check_this (tree stmt, tree this_arg) in build_check_this() argument
294 java_check_reference (this_arg, 1), stmt); in build_check_this()
313 return build_check_this (stmt, this_arg); in putObject_builtin()
332 return build_check_this (stmt, this_arg); in compareAndSwapInt_builtin()
358 return build_check_this (stmt, this_arg); in compareAndSwapLong_builtin()
381 return build_check_this (stmt, this_arg); in compareAndSwapObject_builtin()
[all …]

12345678910>>...17