70 references to SymbolKey
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (8)
SymbolKey\SymbolKeyCompilationsTests.cs (1)
474var symkey = SymbolKey.Create(typeSym02, CancellationToken.None);
SymbolKey\SymbolKeyTestBase.cs (3)
82var sid = SymbolKey.Create(originalSymbol, CancellationToken.None); 96var sid1 = SymbolKey.Create(symbol1, CancellationToken.None); 97var sid2 = SymbolKey.Create(symbol2, CancellationToken.None);
SymbolKey\SymbolKeyTests.cs (4)
49var symbolKey = SymbolKey.Create(type); 88var symbolKey = SymbolKey.Create(type); 124var symbolKey = SymbolKey.Create(type); 174var symbolKey = SymbolKey.Create(method);
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
Peek\PeekableItemFactory.cs (1)
84var symbolKey = SymbolKey.Create(symbol, cancellationToken);
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (1)
MetadataAsSource\OmniSharpMetadataAsSourceHelpers.cs (1)
21var symbolKey = SymbolKey.Create(symbol, cancellationToken);
Microsoft.CodeAnalysis.Features (8)
EditAndContinue\SemanticEditInfo.cs (4)
101/// We use <see cref="SymbolKey"/> to represent the symbol rather then <see cref="ISymbol"/>, 103/// When the edits are processed we map the <see cref="SymbolKey"/> to the current compilation. 110/// We use <see cref="SymbolKey"/> to represent the symbol rather then <see cref="ISymbol"/>, 112/// When the edits are processed we map the <see cref="SymbolKey"/> to the current compilation.
FindUsages\DefinitionItem.cs (1)
43/// metadata-as-source for metadata symbols. We need to store the <see cref="SymbolKey"/>
MetadataAsSource\DecompilationMetadataAsSourceFileProvider.cs (1)
81var symbolId = SymbolKey.Create(symbol, cancellationToken);
PdbSourceDocument\PdbSourceDocumentMetadataAsSourceFileProvider.cs (2)
159var key = SymbolKey.Create(symbolToFind, cancellationToken); 251var symbolId = SymbolKey.Create(symbol, cancellationToken);
Microsoft.CodeAnalysis.Features.Test.Utilities (1)
EditAndContinue\EditAndContinueTestVerifier.cs (1)
307var symbolKey = actualSemanticEdit.Symbol;
Microsoft.CodeAnalysis.Workspaces (47)
ExternalAccess\UnitTesting\Api\UnitTestingSymbolExtensions.cs (1)
12=> SymbolKey.Create(symbol, cancellationToken).ToString();
FindSymbols\SymbolFinder.cs (2)
192var symbolId = symbol.GetSymbolKey(cancellationToken); 226var key = symbol.GetSymbolKey(cancellationToken);
FindSymbols\SymbolFinder_FindReferences_Current.cs (1)
42if (!SymbolKey.IsBodyLevelSymbol(symbol) && SerializableSymbolAndProjectId.TryCreate(symbol, solution, cancellationToken, out var serializedSymbol))
Remote\RemoteArguments.cs (3)
89if (!SymbolKey.CanCreate(symbol, cancellationToken)) 95result = new SerializableSymbolAndProjectId(SymbolKey.CreateString(symbol, cancellationToken), project.Id); 108var symbol = SymbolKey.ResolveString(
Rename\ConflictEngine\ConflictResolver.cs (3)
56ImmutableArray<SymbolKey> nonConflictSymbolKeys, 97ImmutableArray<SymbolKey> nonConflictSymbolKeys, 118ImmutableArray<SymbolKey> nonConflictSymbolKeys,
Rename\ConflictEngine\ConflictResolver.Session.cs (2)
40private readonly ImmutableArray<SymbolKey> _nonConflictSymbolKeys; 54ImmutableArray<SymbolKey> nonConflictSymbolKeys,
Rename\IRemoteRenamerService.cs (2)
34ImmutableArray<SymbolKey> nonConflictSymbolKeys, 48ImmutableArray<SymbolKey> nonConflictSymbolKeys,
Rename\LightweightRenameLocations.cs (1)
118public Task<ConflictResolution> ResolveConflictsAsync(ISymbol symbol, string replacementText, ImmutableArray<SymbolKey> nonConflictSymbolKeys, CancellationToken cancellationToken)
Rename\Renamer.cs (2)
149ImmutableArray<SymbolKey> nonConflictSymbolKeys, 194ImmutableArray<SymbolKey> nonConflictSymbolKeys,
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\SymbolKey\SymbolKey.BodyLevelSymbolKey.cs (2)
244if (!SymbolKey.Equals(reader.Compilation, name, symbol.Name)) 267SymbolKey.Equals(semanticModel.Compilation, symbol.Name, localName))
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\SymbolKey\SymbolKey.cs (15)
20/// A <see cref="SymbolKey"/> is a lightweight identifier for a symbol that can be used to 97/// <see cref="SymbolKey"/>s are not guaranteed to work across different versions of Roslyn. They can be persisted 103/// The string values produced by <see cref="CreateString"/> (or <see cref="SymbolKey.ToString"/>) should not be 105/// 'same' symbol might produce different strings. Instead, to compare keys use <see cref="SymbolKey.GetComparer"/> 110internal partial struct SymbolKey(string data) : IEquatable<SymbolKey> 124/// Constructs a new <see cref="SymbolKey"/> representing the provided <paramref name="symbol"/>. 126public static SymbolKey Create(ISymbol? symbol, CancellationToken cancellationToken = default) 130/// Returns an <see cref="IEqualityComparer{T}"/> that determines if two <see cref="SymbolKey"/>s 142public static IEqualityComparer<SymbolKey> GetComparer(bool ignoreCase = false, bool ignoreAssemblyKeys = false) 185failureReason = $"({nameof(SymbolKey)} invalid format '${version}')"; 217/// Tries to resolve this <see cref="SymbolKey"/> in the given 227/// Returns this <see cref="SymbolKey"/> encoded as a string. This can be persisted 350=> obj is SymbolKey symbolKey && this.Equals(symbolKey); 352public readonly bool Equals(SymbolKey other) 355private readonly bool Equals(SymbolKey other, bool ignoreCase)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\SymbolKey\SymbolKey.ParameterSymbolKey.cs (1)
87if (SymbolKey.Equals(reader.Compilation, parameter.MetadataName, metadataName))
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\SymbolKey\SymbolKey.SymbolKeyComparer.cs (6)
12private sealed class SymbolKeyComparer : IEqualityComparer<SymbolKey> 19public bool Equals(SymbolKey x, SymbolKey y) 49public int GetHashCode(SymbolKey obj) 52public static IEqualityComparer<SymbolKey> GetComparer(bool ignoreCase, bool ignoreAssemblyKey) 63public static IEqualityComparer<SymbolKey> GetComparer(ComparisonOptions options)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\SymbolKey\SymbolKeyExtensions.cs (2)
11public static SymbolKey GetSymbolKey(this ISymbol? symbol, CancellationToken cancellationToken = default) 12=> SymbolKey.Create(symbol, cancellationToken);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\SymbolKey\SymbolKeyResolution.cs (2)
10/// The result of <see cref="SymbolKey.Resolve"/>. If the <see cref="SymbolKey"/> could be uniquely mapped to a
Workspace\Solution\SolutionCompilationState.RootedSymbolSet.cs (1)
49/// cref="SymbolKey"/>) to resolve that symbol back in that that <see cref="Project"/>.
Workspace\Solution\SolutionCompilationState.SymbolToProjectId.cs (1)
69if (SymbolKey.IsBodyLevelSymbol(symbol))
Microsoft.CodeAnalysis.Workspaces.UnitTests (4)
SymbolKeyTests.cs (4)
958var key = SymbolKey.Create(method); 1313var symbolKey1 = SymbolKey.Create(compilation1.GetSpecialType(SpecialType.System_Int32)); 1314var symbolKey2 = SymbolKey.Create(compilation2.GetSpecialType(SpecialType.System_Int32)); 1424var key = SymbolKey.Create(symbol);