Searched refs:colon (Results 1 - 25 of 73) sorted by relevance

123

/src/usr.bin/make/unit-tests/
H A Ddep-double-colon-indep.exp1 : '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'
H A Ddepsrc-usebefore-double-colon.exp1 double-colon early 1
H A Ddep-double-colon-indep.mk1 # $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
[all...]
H A Ddep-colon-bug-cross-file.exp1 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
H A Ddep.exp1 make: dep.mk:11: Inconsistent operator for only-colon
2 make: dep.mk:13: Inconsistent operator for only-colon
H A Ddepsrc-usebefore-double-colon.mk1 # $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...]
H A Ddep-wildcards.exp1 dep-colon-bug-cross-file.mk
2 dep-colon.mk
3 dep-double-colon-indep.mk
4 dep-double-colon.mk
H A Ddep.mk9 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:
H A Ddirective.mk39 # 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
H A Dvarmod.mk17 # * `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 | | n
[all...]
H A Ddep-colon.mk1 # $NetBSD: dep-colon.mk,v 1.3 2020/10/17 20:10:04 rillig Exp $
H A Ddep-double-colon.mk1 # $NetBSD: dep-double-colon.mk,v 1.5 2020/11/15 20:20:58 rillig Exp $
/src/bin/rcp/
H A Dextern.h42 char *colon(char *);
/src/usr.bin/audio/common/
H A Ddecode.c79 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/
H A DMakefile10 FILES= colon.hfs.bz2.uue
/xsrc/external/mit/ctwm/dist/
H A Dparse_m4.c141 char *server, *colon; local in function:m4_defs
147 colon = strchr(server, ':');
148 if(colon != NULL) {
149 *colon = '\0';
H A Dimage.c233 char *colon; local in function:ExpandPixmapPath
236 /* PixmapDirectory is a colon-separated list */
237 while((colon = strchr(p, ':'))) {
238 *colon = '\0';
240 *colon = ':';
245 p = colon + 1;
/src/usr.bin/mkdep/
H A Dmkdep.c217 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) <
[all...]
/src/usr.sbin/ypserv/mknetid/
H A Dmknetid.c218 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) {
/xsrc/external/mit/xmessage/dist/
H A Dmakeform.c129 char *start, *colon, *comma; local in function:parse_name_and_exit_code_list
133 colon = comma = NULL;
141 else if (*cp == ':') colon = cp;
149 * If comma is NULL then we are at the end of the string. If colon
155 if (colon) {
156 exitcode = atoi (colon+1);
157 *colon = '\0';
/src/usr.sbin/wgconfig/
H A Dwgconfig.c526 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 i
[all...]
/xsrc/external/mit/libX11/dist/src/xlibi18n/
H A DlcCharSet.c176 const char *colon; local in function:_XlcCreateDefaultCharSet
197 if ((colon = strchr(charset->name, ':')) != NULL) {
198 size_t length = (size_t)(colon - charset->name);
/src/usr.bin/mail/
H A Dsupport.c180 ishfield(const char linebuf[], char *colon, const char field[]) argument
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) argument
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, fiel
[all...]
/src/tests/usr.bin/indent/
H A Dlsym_lparen_or_lbracket.c258 a ? 3 : (colon);
304 a ? 3 : (colon);
/xsrc/external/mit/libXcursor/dist/src/
H A Dlibrary.c82 const char *colon; local in function:_XcursorBuildThemeDir
94 colon = strchr (dir, ':');
95 if (!colon)
96 colon = dir + strlen (dir);
98 dirlen = (int) (colon - dir);
157 char *colon = strchr (path, ':'); local in function:_XcursorNextPath
159 if (!colon)
161 return colon + 1;

Completed in 31 milliseconds

123