3 instantiations of InterceptsLocationData
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SemanticFacts\CSharpSemanticFacts.cs (1)
458
var interceptsLocationData = new
InterceptsLocationData
(contentHash, simpleName.FullSpan.Start);
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\SyntaxTree\SyntaxTreeIndex_Persistence.cs (1)
92
new
InterceptsLocationData
(
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\InterceptsLocationUtilities.cs (1)
106
result =
new
(contentHash, position);
15 references to InterceptsLocationData
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SemanticFacts\CSharpSemanticFacts.cs (1)
458
var
interceptsLocationData = new InterceptsLocationData(contentHash, simpleName.FullSpan.Start);
Microsoft.CodeAnalysis.Workspaces (14)
FindSymbols\SyntaxTree\SyntaxTreeIndex.cs (2)
20
private readonly Dictionary<
InterceptsLocationData
, TextSpan>? _interceptsLocationInfo;
28
Dictionary<
InterceptsLocationData
, TextSpan>? interceptsLocationInfo)
FindSymbols\SyntaxTree\SyntaxTreeIndex_Create.cs (3)
53
Dictionary<
InterceptsLocationData
, TextSpan>? interceptsLocationInfo = null;
259
ref Dictionary<
InterceptsLocationData
, TextSpan>? interceptsLocationInfo,
317
if (!InterceptsLocationUtilities.TryGetInterceptsLocationData(version, data, out
var
interceptsLocationData))
FindSymbols\SyntaxTree\SyntaxTreeIndex_Forwarders.cs (1)
74
public bool TryGetInterceptsLocation(
InterceptsLocationData
data, out TextSpan span)
FindSymbols\SyntaxTree\SyntaxTreeIndex_Persistence.cs (1)
84
Dictionary<
InterceptsLocationData
, TextSpan>? interceptsLocationInfo = null;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\InterceptsLocationUtilities.cs (7)
22
public readonly bool Equals(
InterceptsLocationData
other)
31
public static ImmutableArray<
InterceptsLocationData
> GetInterceptsLocationData(ImmutableArray<AttributeData> attributes)
33
using var result = TemporaryArray<
InterceptsLocationData
>.Empty;
37
if (TryGetInterceptsLocationData(attribute, out
var
data))
44
public static bool TryGetInterceptsLocationData(AttributeData attribute, out
InterceptsLocationData
result)
59
public static bool TryGetInterceptsLocationData(int version, string attributeData, out
InterceptsLocationData
result)
70
private static bool TryGetInterceptsLocationDataVersion1(string attributeData, out
InterceptsLocationData
result)