5 references to MaskXmlDocCommentLocation
Microsoft.CodeAnalysis.CSharp (5)
Parser\Blender.cs (1)
103
_newLexerDrivenMode = newLexerDrivenMode & (LexerMode.
MaskXmlDocCommentLocation
| LexerMode.MaskXmlDocCommentStyle);
Parser\Blender.Reader.cs (1)
177
_newLexerDrivenMode = mode & (LexerMode.
MaskXmlDocCommentLocation
| LexerMode.MaskXmlDocCommentStyle);
Parser\DocumentationCommentParser.cs (1)
55
this.Mode = mode | (tmp & (LexerMode.
MaskXmlDocCommentLocation
| LexerMode.MaskXmlDocCommentStyle));
Parser\Lexer.cs (2)
180
return (XmlDocCommentLocation)((int)(mode & LexerMode.
MaskXmlDocCommentLocation
) >> 16);
190
_mode &= ~LexerMode.
MaskXmlDocCommentLocation
;