Home
last modified time | relevance | path

Searched refs:SkipBlanks (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DLineIterator.cpp34 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
42 CommentMarker(CommentMarker), SkipBlanks(SkipBlanks), in line_iterator()
50 if (SkipBlanks || !isAtLineEnd(Buffer.getBufferStart())) in line_iterator()
63 if (!SkipBlanks && isAtLineEnd(Pos)) { in advance()
72 if (isAtLineEnd(Pos) && !SkipBlanks) in advance()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DLineIterator.h36 bool SkipBlanks = true; variable
52 explicit line_iterator(const MemoryBufferRef &Buffer, bool SkipBlanks = true,
56 explicit line_iterator(const MemoryBuffer &Buffer, bool SkipBlanks = true,