Home | History | Annotate | Download | only in AST

Lines Matching refs:IsWhitespace

85     /// True if \c IsWhitespace field contains a valid value.
89 mutable unsigned IsWhitespace : 1;
130 /// True if \c IsWhitespace field contains a valid value.
134 mutable unsigned IsWhitespace : 1;
289 bool isWhitespace() const {
291 return TextCommentBits.IsWhitespace;
293 TextCommentBits.IsWhitespace = isWhitespaceNoCache();
295 return TextCommentBits.IsWhitespace;
562 ParagraphCommentBits.IsWhitespace = true;
586 bool isWhitespace() const {
588 IsWhitespace;
590 ParagraphCommentBits.IsWhitespace = isWhitespaceNoCache();
592 return ParagraphCommentBits.IsWhitespace;
700 return Paragraph && !Paragraph->isWhitespace();