Home
last modified time | relevance | path

Searched refs:thisarg (Results 1 – 25 of 167) sorted by relevance

1234567

/dports/devel/splint/splint-3.1.2/src/
H A Dhelp.c482 char *thisarg = argv[i]; in help_processFlags() local
484 if (*thisarg == '-' || *thisarg == '+') in help_processFlags()
486 thisarg++; /* skip '-' */ in help_processFlags()
488 if (mstring_equal (thisarg, "modes")) in help_processFlags()
492 else if (mstring_equal (thisarg, "vars") in help_processFlags()
493 || mstring_equal (thisarg, "env")) in help_processFlags()
505 else if (mstring_equal (thisarg, "comments")) in help_processFlags()
514 || mstring_equal (thisarg, "refs")) in help_processFlags()
518 else if (mstring_equal (thisarg, "mail")) in help_processFlags()
523 || mstring_equal (thisarg, "version")) in help_processFlags()
[all …]
/dports/devel/cvs-devel/cvs-1.12.13/src/
H A Drelease.c142 char *thisarg; in release() local
207 thisarg = argv[i]; in release()
209 if (isdir (thisarg)) in release()
211 if (CVS_CHDIR (thisarg) < 0) in release()
214 error (0, errno, "can't chdir to: %s", thisarg); in release()
231 error (0, 0, "no such directory: %s", thisarg); in release()
286 delete_flag ? "(and delete) " : "", thisarg); in release()
330 argv[1] = thisarg; in release()
342 send_to_server (thisarg, 0); in release()
349 history_write ('F', thisarg, "", thisarg, ""); /* F == Free */ in release()
[all …]
/dports/sysutils/fluxengine/fluxengine-61ff48c/lib/
H A Dflags.cc74 std::string thisarg = argv[index]; in parseFlagsWithFilenames() local
81 if (thisarg.size() == 0) in parseFlagsWithFilenames()
85 else if (thisarg[0] != '-') in parseFlagsWithFilenames()
88 filenames.push_back(thisarg); in parseFlagsWithFilenames()
94 if ((thisarg.size() > 1) && (thisarg[1] == '-')) in parseFlagsWithFilenames()
98 auto equals = thisarg.rfind('='); in parseFlagsWithFilenames()
106 key = thisarg; in parseFlagsWithFilenames()
115 if (thisarg.size() > 2) in parseFlagsWithFilenames()
117 key = thisarg.substr(0, 2); in parseFlagsWithFilenames()
118 value = thisarg.substr(2); in parseFlagsWithFilenames()
[all …]
/dports/audio/wav2cdr/wav2cdr/
H A Dmygetopt.c106 char *thisarg; in getopt_long() local
121 if ((thisarg = argv[optind])[0] != '-') in getopt_long()
123 thisarg++; /* advance thisarg till after '-' */ in getopt_long()
125 fprintf (stderr, " thisarg: %s\n", thisarg); in getopt_long()
127 if (thisarg[0] == '\0') in getopt_long()
131 if (thisarg[0] != '-') { in getopt_long()
134 pc = strchr (shortoptions, thisarg[0]); in getopt_long()
137 thisarg, STRNULL(pc)); in getopt_long()
140 optopt = thisarg[0]; /* illegal short option */ in getopt_long()
152 if (*++thisarg == '\0') { /* if arg was -- stop opt processing */ in getopt_long()
[all …]
/dports/science/lammps/lammps-stable_29Sep2021/src/SRD/
H A Dfix_wall_srd.cpp49 const std::string thisarg(arg[iarg]); in FixWallSRD() local
50 if ((thisarg == "xlo") || (thisarg == "ylo") || (thisarg == "zlo") in FixWallSRD()
51 || (thisarg == "xhi") || (thisarg == "yhi") || (thisarg == "zhi")) { in FixWallSRD()
55 if (thisarg == "xlo") newwall = XLO; in FixWallSRD()
56 else if (thisarg == "xhi") newwall = XHI; in FixWallSRD()
57 else if (thisarg == "ylo") newwall = YLO; in FixWallSRD()
58 else if (thisarg == "yhi") newwall = YHI; in FixWallSRD()
59 else if (thisarg == "zlo") newwall = ZLO; in FixWallSRD()
60 else if (thisarg == "zhi") newwall = ZHI; in FixWallSRD()
86 } else if (thisarg == "units") { in FixWallSRD()
/dports/net/latd/latd-1.31/
H A Dserversession.cc261 const char *thisarg; in execute_command() local
264 thisarg = strtok(cmd, " "); in execute_command()
267 char fullcmd[strlen(thisarg)+1]; in execute_command()
268 strcpy(fullcmd, thisarg); in execute_command()
271 cmdname = strrchr(thisarg, '/')+1; in execute_command()
272 if (cmdname == (char *)1) cmdname = thisarg; in execute_command()
278 if (argc == 0) thisarg = cmdname; in execute_command()
280 argv[argc] = (char *)malloc(strlen(thisarg)+1); in execute_command()
281 strcpy(argv[argc], thisarg); in execute_command()
283 thisarg = strtok(NULL, " "); in execute_command()
[all …]
/dports/science/clipper/clipper-2.1/clipper/ccp4/
H A Dccp4_utils.cpp55 std::string thisarg( argv[arg] ); in CCP4CommandInput() local
56 if ( thisarg.length() > 2 ) in CCP4CommandInput()
57 if ( thisarg[0] == '-' && thisarg[1] == '-' ) in CCP4CommandInput()
58 thisarg = thisarg.substr(1); in CCP4CommandInput()
59 if ( thisarg == "-stdin" ) { in CCP4CommandInput()
83 push_back( thisarg ); in CCP4CommandInput()
/dports/devel/plan9port/plan9port-1f098efb7370a0b28306d10681e21883fb1c1507/src/cmd/db/
H A Dtrcrun.c141 char *thisarg; in doexec() local
147 thisarg = p; in doexec()
159 if (*thisarg == '<') { in doexec()
161 if (open(&thisarg[1], OREAD) < 0) { in doexec()
162 print("%s: cannot open\n", &thisarg[1]); in doexec()
166 else if (*thisarg == '>') { in doexec()
168 if (create(&thisarg[1], OWRITE, 0666) < 0) { in doexec()
169 print("%s: cannot create\n", &thisarg[1]); in doexec()
174 *ap++ = thisarg; in doexec()
/dports/archivers/dpkg/dpkg-1.19.7/src/
H A Dquerycmd.c336 const char *thisarg; in searchfiles() local
349 while ((thisarg = *argv++) != NULL) { in searchfiles()
352 if (!strchr("*[?/",*thisarg)) { in searchfiles()
355 varbuf_add_str(&vb, thisarg); in searchfiles()
358 thisarg= vb.buf; in searchfiles()
360 if (!strpbrk(thisarg, "*[?\\")) { in searchfiles()
364 varbuf_add_str(&path, thisarg); in searchfiles()
396 const char *thisarg; in print_status() local
441 const char *thisarg; in print_avail() local
478 const char *thisarg; in list_files() local
[all …]
/dports/www/hotcrp/hotcrp-2.102/lib/
H A Ddbl.php205 $thisarg = substr($qstr, $nextpos + 1, $rbracepos - $nextpos - 1);
206 if ($thisarg === (string) (int) $thisarg)
207 --$thisarg;
213 $thisarg = $argpos;
215 } while (isset($usedargs[$thisarg]));
217 if (!array_key_exists($thisarg, $argv))
218 …ndmark() . ": query '$original_qstr' argument " . (is_int($thisarg) ? $thisarg + 1 : $thisarg) . "…
219 $usedargs[$thisarg] = true;
221 $arg = get($argv, $thisarg);
269 …ndmark() . ": query '$original_qstr' argument " . (is_int($thisarg) ? $thisarg + 1 : $thisarg) . "…
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, arglen, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/lang/gcc8/gcc-8.5.0/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/lang/gcc48/gcc-4.8.5/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, arglen, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/lang/gcc10/gcc-10.3.0/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/lang/gcc12-devel/gcc-12-20211205/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/lang/gcc11-devel/gcc-11-20211009/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/lang/gcc9-devel/gcc-9-20211007/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, arglen, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/lang/gnat_util/gcc-6-20180516/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, arglen, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()
/dports/devel/avr-gcc/gcc-10.2.0/libgfortran/intrinsics/
H A Dargs.c198 int i, argc, thisarg; in get_command_i4() local
223 thisarg = arglen; in get_command_i4()
224 if (tot_len + thisarg > command_len) in get_command_i4()
226 thisarg = command_len - tot_len; /* Truncate. */ in get_command_i4()
233 memcpy (&command[tot_len], argv[i], thisarg); in get_command_i4()

1234567