Searched refs:newline (Results 1 - 25 of 77) sorted by relevance

1234

/freebsd-10.0-release/contrib/ncurses/include/
H A Dcapdefaults.c57 if (VALID_STRING(newline) && (capval = EXTRACT_DELAY(newline)))
78 linefeed_is_newline = (char) (VALID_STRING(newline)
79 && (strcmp("\n", newline) == 0));
/freebsd-10.0-release/usr.bin/indent/
H A Dindent_codes.h39 #define newline 1 macro
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_subr/
H A Ddebug.c97 char *newline = strchr(s, '\n'); local
98 if (newline)
99 *newline = '\0';
105 if (! newline)
107 s = newline + 1;
109 while (*s); /* print another line, except after a final newline */
/freebsd-10.0-release/usr.bin/from/
H A Dfrom.c62 int ch, count, newline; local
117 for (newline = 1; fgets(buf, sizeof(buf), mbox);) {
119 newline = 1;
122 if (newline && !strncmp(buf, "From ", 5) &&
129 newline = 0;
/freebsd-10.0-release/libexec/tftpd/
H A Dtftp-file.c109 static int newline = 0; local
112 newline = 0;
123 if (newline) {
124 buffer[i++] = newline;
125 newline = 0;
163 newline = buffer[i-1];
/freebsd-10.0-release/lib/libc/stdio/
H A Dgetdelim.c67 char *newline; local
79 newline = realloc(*linep, newcap);
80 if (newline == NULL)
83 *linep = newline;
/freebsd-10.0-release/usr.bin/csup/
H A Dkeyword.c285 char *linestart, *newline, *newval, *cp, *tmp; local
290 newline = NULL;
297 if (newline != NULL) {
298 *buf = newline;
308 if (newline != NULL) {
309 *buf = newline;
337 if (newline != NULL)
338 tmp = newline;
346 newline = xmalloc(newsize);
347 cp = newline;
[all...]
H A Drcstokenizer.l50 newline \n
/freebsd-10.0-release/usr.sbin/pc-sysinstall/backend/
H A Dfunctions-parse.sh171 while read newline
173 echo ${newline} | grep -q "^#" 2>/dev/null
175 VAL="`echo ${newline} | cut -d '=' -f 1`"
183 echo "${newline}" >> ${FINALCFG}
/freebsd-10.0-release/bin/sh/
H A Dmktokens44 TNL 0 newline
/freebsd-10.0-release/bin/echo/
H A Decho.c74 int nflag; /* if not set, output a trailing newline. */
78 char newline[] = "\n"; local
109 /* chop it and set the no-newline flag. */
123 vp->iov_base = newline;
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Host/common/
H A DTimeValue.cpp156 char *newline = ::strpbrk(time_cstr, "\n\r"); local
157 if (newline)
158 *newline = '\0';
/freebsd-10.0-release/usr.bin/chkey/
H A Dchkey.c204 char newline = '\n'; local
207 write(fd, &newline, sizeof(newline)) < 0)
/freebsd-10.0-release/contrib/unbound/util/
H A Dconfiglexer.lex304 <quotedstring>{NEWLINE} { yyerror("newline inside quoted string, no end \"");
325 <singlequotedstr>{NEWLINE} { yyerror("newline inside quoted string, no end '");
358 <include_quoted>{NEWLINE} { yyerror("newline before \" in include name");
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DCommentBriefParser.cpp106 if (Tok.is(tok::newline)) {
117 // a space for the newline.
123 if (Tok.is(tok::newline)) {
H A DCommentParser.cpp91 if (P.Tok.is(tok::newline)) {
92 // If we see a single newline token between text tokens, skip it.
365 else if (Tok.is(tok::newline)) {
591 case tok::newline: {
593 if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
643 // by a newline.
644 if (Tok.is(tok::newline))
649 Tok.is(tok::newline)) {
655 if (Tok.is(tok::newline)) {
659 // Empty line, just a tok::newline
[all...]
/freebsd-10.0-release/etc/periodic/daily/
H A D800.scrub-zfs9 newline="
10 " # A single newline
40 _status=${_status##*$newline}
/freebsd-10.0-release/contrib/bmake/
H A Djob.h234 const char *newline; /* string literal that results in a newline
232 const char *newline; /* string literal that results in a newline member in struct:Shell
/freebsd-10.0-release/contrib/binutils/gas/
H A Dapp.c795 as_warn (_("end of file not at end of a line; newline inserted"));
965 as_warn ("end of file in comment; newline inserted");
1104 as_warn (_("end of file in comment; newline inserted"));
1158 as_warn (_("end of file in comment; newline inserted"));
1169 as_warn (_("end of file in comment; newline inserted"));
1243 as_warn (_("end of file in comment; newline inserted"));
/freebsd-10.0-release/contrib/diff/src/
H A Dutil.c540 fprintf (out, "\n\\ %s\n", _("No newline at end of file"));
696 char const *newline = linbuf0[i + 1] - 1;
697 size_t len = newline - line;
702 if (newline - p != trivial_length local
711 char const *newline = linbuf1[i + 1] - 1;
712 size_t len = newline - line;
717 if (newline - p != trivial_length
687 char const *newline = linbuf0[i + 1] - 1; local
/freebsd-10.0-release/contrib/groff/src/roff/troff/
H A Dtoken.h47 TOKEN_NEWLINE, // newline
79 int newline(); // is the current token a newline?
139 inline int token::newline() function in class:token
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dkuserok.c81 char *newline = buf + strcspn(buf, "\n"); local
83 if(*newline != '\n') {
93 *newline = '\0';
/freebsd-10.0-release/usr.bin/unifdef/
H A Dunifdef.c115 STARTING_COMMENT, /* just after slash-backslash-newline */
116 FINISHING_COMMENT, /* star-backslash-newline in a C comment */
183 static const char *newline; /* input file format */ variable
618 "%s%s", replacement, newline);
679 if (lnblank && fputs(newline, output) == EOF)
698 e = fprintf(output, "#line %d%s", linenum, newline);
701 linenum, linefile, newline);
760 if (newline == NULL) {
762 newline = newline_crlf;
764 newline
[all...]
/freebsd-10.0-release/contrib/top/
H A Ddisplay.c865 u_process(line, newline)
868 char *newline;
879 newline[display_width] = '\0';
898 fputs(newline, stdout);
901 optr = strecpy(bufferline, newline);
908 line_update(bufferline, newline, 0, line + Header_lines);
1055 /* newline means we are done */
/freebsd-10.0-release/contrib/unbound/smallapp/
H A Dunbound-control.c271 const char* newline="\n"; local
284 if(SSL_write(ssl, newline, (int)strlen(newline)) <= 0)

Completed in 677 milliseconds

1234