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