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)
55this.Mode = mode | (tmp & (LexerMode.MaskXmlDocCommentLocation | LexerMode.MaskXmlDocCommentStyle));
Parser\Lexer.cs (2)
180return (XmlDocCommentLocation)((int)(mode & LexerMode.MaskXmlDocCommentLocation) >> 16); 190_mode &= ~LexerMode.MaskXmlDocCommentLocation;