/src/usr.bin/make/unit-tests/ |
varname-dot-newline.mk | 1 # $NetBSD: varname-dot-newline.mk,v 1.7 2024/06/15 22:06:31 rillig Exp $ 3 # Tests for the special .newline variable, which contains a single newline 8 # > After all macro expansion is complete, when an escaped <newline> is 10 # > shall contain the <backslash>, the <newline>, and the next line, except 14 # The above quote assumes that each resulting <newline> character has a "next 15 # line", but that's not how the .newline variable works. 16 BACKSLASH_NEWLINE:= \${.newline} 19 # Check that .newline is read-only 21 NEWLINE:= ${.newline [all...] |
opt-debug-errors.mk | 10 all: fail-newline 24 # XXX: A newline is turned into an ordinary space in the debug log. 25 fail-newline: 26 echo 'line1${.newline}line2'; false
|
dollar.mk | 26 ${:U${.newline}}= newline-var-value
|
opt-debug-errors-jobs.mk | 10 all: fail-newline 21 fail-newline: 22 echo 'line1${.newline}line2'; false
|
opt-jobs.mk | 22 . warning ${arg}:${.newline} have: ${OUTPUT:[2..-1]}${.newline} want: ${EXPECT.${arg}} 49 . warning ${arg}:${.newline} have: ${OUTPUT:[2..-1]}${.newline} want: ${EXPECT.${arg}}
|
/src/usr.bin/from/ |
from.c | 62 int ch, newline; local in function:main 118 for (newline = 1; fgets(buf, sizeof(buf), stdin);) { 120 newline = 1; 123 if (newline && !strncmp(buf, "From ", 5) && 126 newline = 0;
|
/src/tests/usr.bin/indent/ |
lsym_lparen_or_lbracket.c | 245 /* ps.prev_lsym can never be 'newline'. */ 246 int newline = local in function:cover_want_blank_before_lparen 291 /* ps.prev_lsym can never be 'newline'. */ local in function:cover_want_blank_before_lparen 292 int newline =
|
/src/tests/lib/libc/gen/ |
t_humanize_number.c | 114 void newline(void); 156 newline(void) function in typeref:typename:void 241 newline();
|
/src/usr.bin/tftp/ |
tftpsubs.c | 77 static int newline = 0; /* fillbuf: in middle of newline expansion */ variable in typeref:typename:int 98 newline = 0; /* init crlf flag */ 160 if (newline) { 164 newline = 0; 172 newline = 1;
|
/src/usr.bin/fpr/ |
fpr.c | 279 COLUMN *newline; local in function:savech 291 newline = realloc(line, (unsigned) (col + 10) * sizeof(COLUMN)); 292 if (newline == NULL) 294 line = newline;
|
/src/usr.bin/error/ |
subr.c | 237 static char newline[] = NEWLINE; variable in typeref:typename:char[] 252 { /*INAS 3*/ "as", ASINCOMMENT, newline }, 258 { /*INFRANZ 9*/ "franz", lispincomment, newline }, 259 { /*INLISP 10*/ "lisp", lispincomment, newline }, 260 { /*INVAXIMA 11*/ "vaxima", lispincomment, newline }, 264 { /*INAPL 15*/ "apl", ".lm", newline }, 265 { /*INMAKE 16*/ "make", ASINCOMMENT, newline },
|
/src/sys/arch/i386/stand/bootxx/ |
pbr.S | 63 #define newline R(_newline) macro 327 movw $newline, %si 383 _errtxt: .ascii "Error " /* runs into newline... */
|
/src/games/backgammon/common_source/ |
fancy.c | 46 static void newline(void); 631 /* do newline be calling newline */ 633 newline(); 702 newline(void) function in typeref:typename:void
|
/src/sys/arch/i386/stand/fatboot/ |
fatboot.S | 195 movw $newline, %si 321 errtxt: .ascii "Error " /* runs into newline... */ 323 newline: label
|
/src/usr.bin/ktruss/ |
dump.c | 112 void newline(void); 137 newline(void) function in typeref:typename:void 302 newline(); 325 newline(); 696 newline(); 765 newline();
|
/src/sys/kern/ |
uipc_mbufdebug.c | 973 int newline = 0; local in function:m_examine_hex 989 newline++; 995 if ((newline % EXAMINE_HEX_COL) == 0) {
|
/src/lib/libintl/ |
gettext.c | 723 char *newline = strchr(mohandle->mo.mo_charset, '\n'); local in function:mapit 724 if (newline != NULL) 725 *newline = '\0';
|
/src/bin/ksh/ |
sh.h | 329 EXTERN char newline [] I__("\n"); variable in typeref:typename:EXTERN char[]I__ ("")
|
/src/usr.bin/indent/ |
indent.h | 240 * a newline is placed between the type 305 * newline or preprocessing line */ 397 bool break_after_comma; /* whether to add a newline after the next 406 } newline; /* decides whether to insert a line break member in struct:parser_state
|
/src/usr.bin/make/ |
job.c | 289 * A string literal that results in a newline character when it 292 const char *newline; member in struct:Shell 394 "'\n'", /* .newline */ 417 "'\n'", /* .newline */ 443 "'\n'", /* .newline */ 466 "'\\\n'", /* .newline */ 1789 p++; /* skip over the (XXX: assumed) newline */ 2075 /* Return the shell string literal that results in a newline character. */ 2079 return shell->newline; 2239 * newline String literal to represent a newline character [all...] |
var.c | 1832 const char *newline = Shell_GetNewline(); local in function:QuoteShell 1833 if (newline == NULL) 1834 newline = "\\\n"; 1835 LazyBuf_AddStr(buf, newline);
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
i915_debugfs.c | 3983 char *newline; local in function:i915_hpd_storm_ctl_write 3994 /* Strip newline, if any */ 3995 newline = strchr(tmp, '\n'); 3996 if (newline) 3997 *newline = '\0'; 4061 char *newline; local in function:i915_hpd_short_storm_ctl_write 4074 /* Strip newline, if any */ 4075 newline = strchr(tmp, '\n'); 4076 if (newline) 4077 *newline = '\0' [all...] |
/src/lib/libterminfo/ |
term.h | 168 * eat_newline_glitch: Newline ignored after 80 columns (Concept) 1431 #define newline t_newline(cur_term) macro 1829 * newline: Newline (behaves like cr followed by lf)
|