Lines Matching full:newline
117 /// Returns pointer to the first newline character in the string.
240 // We found a newline, check if it is escaped.
248 // We found an escaped newline.
251 return CurPtr; // Not an escaped newline.
421 formTokenWithChars(T, TokenPtr, tok::newline);
453 // If there is a newline following the verbatim opening command, skip the
454 // newline so that we don't create an tok::verbatim_block_line with empty
471 // end command or newline.
474 const char *Newline = findNewline(BufferPtr, CommentEnd);
475 StringRef Line(BufferPtr, Newline - BufferPtr);
483 TextEnd = Newline;
484 NextLine = skipNewline(Newline, CommentEnd);
533 const char *Newline = findNewline(BufferPtr, CommentEnd);
534 const StringRef Text(BufferPtr, Newline - BufferPtr);
535 formTokenWithChars(T, Newline, tok::verbatim_line_text);
790 // between them -- guaranteed by comment extraction) into a newline. We
793 formTokenWithChars(T, EndWhitespace, tok::newline);
811 // Synthenize newline just after the C comment, regardless if there is
812 // actually a newline.
813 formTokenWithChars(T, BufferPtr, tok::newline);
818 // Don't synthesized a newline after BCPL comment.