Lines Matching defs:end

237  * It prints "Missing operator before end of line" if there's nothing
578 /* only continue to recharge the buffer if we're at the end
590 /* end of file. Add on the -p or -n magic */
624 /* not at end of file, so we only read another line */
834 char *end = start + len;
835 while (start < end) {
898 * chunk, up to end of string or a backslash. It may make a new
956 * (I'm not sure whether the spurious commas at the end of lcfirst's
1168 characters are VERY literal, except for - not at the start or end
1209 } (end switch)
1210 } (end if backslash)
1211 } (end while character to read)
1218 register char *send = PL_bufend; /* end of the constant */
1466 * they can end up as. */
1642 } /* end switch */
1646 } /* end if (backslash) */
1909 * and s is the end of it
2059 return 0 ; /* end of file */
2068 return 0 ; /* end of file */
2242 /* handle \E or end of string */
3021 "at end of line" context messages from yyerror().
3087 /* MUST advance bufptr here to avoid bogus "at end of line"
6741 char *end;
6745 e = PL_tokenbuf + sizeof PL_tokenbuf; /* end of temp holding space */
6746 end = strchr(s, '\n');
6747 if (!end)
6748 end = PL_bufend;
6749 s = delimcpy(d, e, s + 1, end, '>', &len); /* extract until > */
6752 or if it didn't end, or if we see a newline
6757 if (s >= end)
7110 /* terminate the copied string and update the sv's end-of-string */
7222 register char *e; /* end of temp buffer */
7338 /* Prepare to put the digit we have onto the end
7355 u = x | b; /* add the digit to the end */
7365 * end just multiply n by the right
7429 /* check for end of fixed-length buffer */
7635 char *end = SvPVX(stuff) + SvCUR(stuff);
7636 end[-2] = '\n';
7637 end[-1] = '\0';
7791 where = "at end of line";
8041 char *end = pos;
8043 while (--end >= s) {
8045 if (*end == '_')
8048 rev += (*end - '0') * mult;