5 overrides of IsDefinedInSourceTree
Microsoft.CodeAnalysis.CSharp (5)
Symbols\Source\SourceFieldSymbol.cs (1)
228public override bool IsDefinedInSourceTree(SyntaxTree tree, TextSpan? definedWithinSpan, CancellationToken cancellationToken = default)
Symbols\Source\SourceMemberContainerSymbol.cs (1)
1011public override bool IsDefinedInSourceTree(SyntaxTree tree, TextSpan? definedWithinSpan, CancellationToken cancellationToken)
Symbols\Source\SourceNamespaceSymbol.cs (1)
456public override bool IsDefinedInSourceTree(SyntaxTree tree, TextSpan? definedWithinSpan, CancellationToken cancellationToken = default(CancellationToken))
Symbols\Source\SourceOrdinaryMethodSymbol.cs (1)
441public sealed override bool IsDefinedInSourceTree(
Symbols\Synthesized\SynthesizedSimpleProgramEntryPointSymbol.cs (1)
254public override bool IsDefinedInSourceTree(SyntaxTree tree, TextSpan? definedWithinSpan, CancellationToken cancellationToken)
6 references to IsDefinedInSourceTree
Microsoft.CodeAnalysis.CSharp (6)
Compilation\CSharpCompilation.cs (1)
3048if (symbol.IsDefinedInSourceTree(tree, span))
Compiler\ClsComplianceChecker.cs (1)
978return _filterTree != null && !symbol.IsDefinedInSourceTree(_filterTree, _filterSpanWithinTree);
Compiler\DocumentationCommentCompiler.cs (2)
222if (_filterTree != null && !symbol.IsDefinedInSourceTree(_filterTree, _filterSpanWithinTree)) 253if (_filterTree != null && !symbol.IsDefinedInSourceTree(_filterTree, _filterSpanWithinTree))
Symbols\Source\SourceMemberContainerSymbol.cs (1)
1016return ContainingSymbol.IsDefinedInSourceTree(tree, definedWithinSpan, cancellationToken);
Symbols\Symbol.cs (1)
937return this.ContainingSymbol.IsDefinedInSourceTree(tree, definedWithinSpan, cancellationToken);