HomeSort by: relevance | last modified time | path
    Searched refs:colon (Results 1 - 25 of 43) sorted by relevancy

1 2

  /src/usr.bin/make/unit-tests/
dep-double-colon-indep.exp 1 : 'Making 1400 dep-double-colon-1300 from dep-double-colon-1400 oodate dep-double-colon-1400'
2 : 'Making 1500 dep-double-colon-1300 from dep-double-colon-1500 oodate dep-double-colon-1500'
depsrc-usebefore-double-colon.exp 1 double-colon early 1
dep-double-colon-indep.mk 1 # $NetBSD: dep-double-colon-indep.mk,v 1.1 2020/10/23 19:11:30 rillig Exp $
16 @rm -f dep-double-colon-1???
18 _!= touch -t 202001011200 dep-double-colon-1200
19 _!= touch -t 202001011300 dep-double-colon-1300
20 _!= touch -t 202001011400 dep-double-colon-1400
21 _!= touch -t 202001011500 dep-double-colon-1500
23 all: dep-double-colon-1300
25 dep-double-colon-1300:: dep-double-colon-1200
28 dep-double-colon-1300:: dep-double-colon-140
    [all...]
dep-colon-bug-cross-file.exp 1 make: dep-colon-bug-cross-file.mk:32: warning: duplicate script for target "all" ignored
2 make: dep-colon-bug-cross-file.mk:42: warning: using previous script for "all" defined here
dep.exp 1 make: dep.mk:11: Inconsistent operator for only-colon
2 make: dep.mk:13: Inconsistent operator for only-colon
dep-wildcards.exp 1 dep-colon-bug-cross-file.mk
2 dep-colon.mk
3 dep-double-colon-indep.mk
4 dep-double-colon.mk
depsrc-usebefore-double-colon.mk 1 # $NetBSD: depsrc-usebefore-double-colon.mk,v 1.1 2020/08/22 08:29:13 rillig Exp $
4 # combined with the double-colon dependency operator.
10 double-colon:: .USEBEFORE
11 @echo double-colon early 1
15 double-colon::
16 @echo double-colon early 2
20 double-colon:: .USEBEFORE
21 @echo double-colon early 3
25 action: double-colon
29 double-colon:
    [all...]
dep.mk 9 only-colon:
10 # expect+1: Inconsistent operator for only-colon
11 only-colon!
12 # expect+1: Inconsistent operator for only-colon
13 only-colon::
16 only-colon:
directive.mk 39 # expect+1: Invalid line "target-without-colon"
40 target-without-colon
42 # expect+1: Invalid line "target-without-colon another-target"
43 target-without-colon another-target
varmod.mk 17 # * `no-colon`: after parsing this modifier, the following modifier
18 # does not need to be separated by a colon.
19 # Omitting this colon is bad style.
30 # All no-colon modifiers get a "no", as the modifier name would be
36 # | ! | no-colon | | no |
42 # | @ | no-colon | | no |
43 # | C | no-colon | | no |
47 # | L | no-colon | | no |
51 # | P | no-colon | | no |
54 # | S | no-colon | | no
    [all...]
dep-colon.mk 1 # $NetBSD: dep-colon.mk,v 1.3 2020/10/17 20:10:04 rillig Exp $
dep-double-colon.mk 1 # $NetBSD: dep-double-colon.mk,v 1.5 2020/11/15 20:20:58 rillig Exp $
opt.mk 15 # error. The colon is used in the options string, marking an option
var-op-sunsh.mk 11 VAR:sh= echo colon-sh
12 .if ${VAR} != "colon-sh"
18 VAR :sh = echo colon-sh-spaced
19 .if ${VAR} != "colon-sh-spaced"
29 VAR:shell= echo colon-shell
33 .if ${${:UVAR\:shell}} != "echo colon-shell"
  /src/bin/rcp/
extern.h 42 char *colon(char *);
util.c 58 colon(char *cp) function in typeref:typename:char *
60 if (*cp == ':') /* Leading colon is part of file name. */
  /src/usr.bin/audio/common/
decode.c 79 char *s, *colon, *dot; local in function:decode_time
90 if ((colon = strchr(s, ':')) != NULL) {
91 *colon++ = '\0';
94 s = colon;
96 if ((colon = strchr(s, ':')) != NULL) {
97 *colon++ = '\0';
101 s = colon;
  /src/tests/fs/hfs/
Makefile 10 FILES= colon.hfs.bz2.uue
  /src/usr.bin/mkdep/
mkdep.c 217 char *buf, *lim, *ptr, *line, *suf, *colon, *eol; local in function:main
376 for (colon = line; *colon != ':'; colon++) {
377 if (colon >= eol) {
378 colon = NULL;
382 if (isspace((unsigned char)*line) || colon == NULL) {
392 for (suf = colon; suf > buf; suf--) {
438 if (write(dependfile, colon, eol - colon) < 0
    [all...]
  /src/usr.sbin/ypserv/mknetid/
mknetid.c 218 int colon; local in function:read_passwd
236 for (k = p, colon = 0; *k != '\0'; k++)
238 colon++;
240 if (colon != 6) {
293 int colon; local in function:read_group
311 for (k = p, colon = 0; *k != '\0'; k++)
313 colon++;
315 if (colon != 3) {
  /src/usr.sbin/wgconfig/
wgconfig.c 526 char *bracket, *colon; local in function:handle_option_endpoint
534 colon = bracket + 1;
535 if (*colon != ':')
537 *colon = '\0';
538 port = colon + 1;
540 char *colon, *tmp; local in function:handle_option_endpoint
541 colon = strchr(addr_port, ':');
542 if (colon == NULL)
544 tmp = strchr(colon + 1, ':');
547 /* Assume the last colon is a separator *
    [all...]
  /src/usr.bin/mail/
support.c 180 ishfield(const char linebuf[], char *colon, const char field[])
182 char *cp = colon;
198 * "colon" is set to point to the colon in the header.
205 gethfield(FILE *f, char linebuf[], int rem, char **colon)
226 *colon = cp;
265 char *colon, *oldhfield = NULL; local in function:hfield
279 if ((lc = gethfield(ibuf, linebuf, lc, &colon)) < 0)
282 if ((headerfield = ishfield(linebuf, colon, field)) != NULL) {
290 if ((headerfield = ishfield(linebuf, colon, field)) != NULL
    [all...]
  /src/tests/usr.bin/indent/
lsym_lparen_or_lbracket.c 258 a ? 3 : (colon);
304 a ? 3 : (colon);
  /src/sbin/newfs_udf/
newfs_udf.c 145 char scrap[255], *colon; local in function:main
211 if ((colon = strstr(optarg, ":"))) {
214 *colon = 0;
216 optarg = colon+1;
  /src/usr.bin/rdist/
defs.h 62 #define COLON 6
153 char *colon(char *);

Completed in 22 milliseconds

1 2