Searched refs:SkipBlanks (Results 1 – 2 of 2) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/ |
| D | LineIterator.cpp | 34 line_iterator::line_iterator(const MemoryBuffer &Buffer, bool SkipBlanks, in line_iterator() argument 36 : line_iterator(Buffer.getMemBufferRef(), SkipBlanks, CommentMarker) {} in line_iterator() 38 line_iterator::line_iterator(const MemoryBufferRef &Buffer, bool SkipBlanks, in line_iterator() argument 41 CommentMarker(CommentMarker), SkipBlanks(SkipBlanks), LineNumber(1), in line_iterator() 49 if (SkipBlanks || !isAtLineEnd(Buffer.getBufferStart())) in line_iterator() 62 if (!SkipBlanks && isAtLineEnd(Pos)) { in advance() 71 if (isAtLineEnd(Pos) && !SkipBlanks) in advance()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/ |
| D | LineIterator.h | 36 bool SkipBlanks = true; variable 52 explicit line_iterator(const MemoryBufferRef &Buffer, bool SkipBlanks = true, 56 explicit line_iterator(const MemoryBuffer &Buffer, bool SkipBlanks = true,
|