Home | History | Annotate | Download | only in Support

Lines Matching defs:ShowColors

268   Scanner(StringRef Input, SourceMgr &SM, bool ShowColors = true);
269 Scanner(MemoryBufferRef Buffer, SourceMgr &SM_, bool ShowColors = true);
279 SM.PrintMessage(Loc, Kind, Message, Ranges, /* FixIts= */ None, ShowColors);
555 bool ShowColors;
761 Scanner::Scanner(StringRef Input, SourceMgr &sm, bool ShowColors)
762 : SM(sm), ShowColors(ShowColors) {
766 Scanner::Scanner(MemoryBufferRef Buffer, SourceMgr &SM_, bool ShowColors)
767 : SM(SM_), ShowColors(ShowColors) {
1769 Stream::Stream(StringRef Input, SourceMgr &SM, bool ShowColors)
1770 : scanner(new Scanner(Input, SM, ShowColors)), CurrentDoc() {}
1772 Stream::Stream(MemoryBufferRef InputBuffer, SourceMgr &SM, bool ShowColors)
1773 : scanner(new Scanner(InputBuffer, SM, ShowColors)), CurrentDoc() {}