12 references to IsNotMissing
Microsoft.CodeAnalysis (4)
Syntax\GreenNode.cs (3)
290InheritMask = IsNotMissing | ContainsAnnotations | ContainsAttributes | ContainsDiagnostics | ContainsDirectives | ContainsSkippedText | ContainsStructuredTrivia, 313return (this.Flags & NodeFlags.IsNotMissing) == 0; 973return ((this.Flags & NodeFlags.InheritMask) == NodeFlags.IsNotMissing) &&
Syntax\InternalSyntax\SyntaxNodeCache.cs (1)
272return GreenNode.NodeFlags.IsNotMissing;
Microsoft.CodeAnalysis.CSharp (8)
Syntax\InternalSyntax\SyntaxToken.cs (6)
26SetFlags(NodeFlags.IsNotMissing); //note: cleared by subclasses representing missing tokens 33SetFlags(NodeFlags.IsNotMissing); //note: cleared by subclasses representing missing tokens 40SetFlags(NodeFlags.IsNotMissing); //note: cleared by subclasses representing missing tokens 46SetFlags(NodeFlags.IsNotMissing); //note: cleared by subclasses representing missing tokens 52SetFlags(NodeFlags.IsNotMissing); //note: cleared by subclasses representing missing tokens 58SetFlags(NodeFlags.IsNotMissing); //note: cleared by subclasses representing missing tokens
Syntax\InternalSyntax\SyntaxToken.MissingTokenWithTrivia.cs (2)
19ClearFlags(NodeFlags.IsNotMissing); 25ClearFlags(NodeFlags.IsNotMissing);