Base:
28 references to GetHashCode
Microsoft.CodeAnalysis (4)
Diagnostic\ExternalFileLocation.cs (1)
80Hash.Combine(_mappedLineSpan.GetHashCode(), _sourceSpan.GetHashCode()));
Diagnostic\SourceLocation.cs (1)
125return Hash.Combine(_syntaxTree, _span.GetHashCode());
Text\TextChange.cs (1)
71return Hash.Combine(this.Span.GetHashCode(), this.NewText?.GetHashCode() ?? 0);
Text\TextChangeRange.cs (1)
71return Hash.Combine(this.NewLength, this.Span.GetHashCode());
Microsoft.CodeAnalysis.CodeStyle (4)
AbstractUnnecessaryImportsProvider.cs (1)
28=> obj.Span.GetHashCode();
NormalizedTextSpanCollection.cs (1)
508hc ^= s.GetHashCode();
Section.cs (1)
191Span.GetHashCode(),
VirtualChar.cs (1)
126hashCode = hashCode * -1521134295 + Span.GetHashCode();
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
AbstractRemoveUnnecessaryImportsService.cs (1)
51=> obj.Span.GetHashCode();
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
FSharpDocumentSpan.cs (1)
57this.SourceSpan.GetHashCode());
Microsoft.CodeAnalysis.Features (5)
CodeLens\LocationComparer.cs (1)
32return Hash.Combine(obj.SourceSpan.GetHashCode(),
DocumentSpan.cs (1)
55SourceSpan.GetHashCode());
NavigateTo\NavigateToSearchResultComparer.cs (1)
32=> Hash.Combine(obj?.NavigableItem.Document.FilePath, obj?.NavigableItem.SourceSpan.GetHashCode() ?? 0);
ReplaceMethodWithProperty\ReplaceMethodWithPropertyCodeRefactoringProvider.cs (1)
496=> obj.Location.SourceSpan.GetHashCode();
ReplacePropertyWithMethods\ReplacePropertyWithMethodsCodeRefactoringProvider.cs (1)
442=> obj.location.Location.SourceSpan.GetHashCode();
Microsoft.CodeAnalysis.UnitTests (2)
Text\TextChangeTests.cs (1)
264return obj.Span.GetHashCode();
Text\TextSpanTest.cs (1)
106span.GetHashCode();
Microsoft.CodeAnalysis.VisualBasic (2)
Locations\EmbeddedTreeLocation.vb (1)
65Return Hash.Combine(CInt(_embeddedKind).GetHashCode(), _span.GetHashCode())
Locations\MyTemplateLocation.vb (1)
57Return _span.GetHashCode()
Microsoft.CodeAnalysis.Workspaces (9)
AbstractRemoveUnnecessaryImportsService.cs (1)
51=> obj.Span.GetHashCode();
AbstractUnnecessaryImportsProvider.cs (1)
28=> obj.Span.GetHashCode();
Classification\ClassifiedSpan.cs (1)
28=> Hash.Combine(this.ClassificationType, this.TextSpan.GetHashCode());
FindSymbols\TopLevelSyntaxTree\DeclaredSymbolInfo.cs (1)
276Hash.Combine(Span.GetHashCode(),
NormalizedTextSpanCollection.cs (1)
508hc ^= s.GetHashCode();
Rename\ConflictEngine\RelatedLocation.cs (2)
68hashCode = hashCode * -1521134295 + ConflictCheckSpan.GetHashCode(); 72hashCode = hashCode * -1521134295 + ComplexifiedTargetSpan.GetHashCode();
Section.cs (1)
191Span.GetHashCode(),
VirtualChar.cs (1)
126hashCode = hashCode * -1521134295 + Span.GetHashCode();