2 instantiations of InterceptsLocationData
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\SyntaxTree\SyntaxTreeIndex_Persistence.cs (1)
92
new
InterceptsLocationData
(
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\InterceptsLocationUtilities.cs (1)
105
result =
new
(contentHash, position);
14 references to InterceptsLocationData
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)
73
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)
21
public readonly bool Equals(
InterceptsLocationData
other)
30
public static ImmutableArray<
InterceptsLocationData
> GetInterceptsLocationData(ImmutableArray<AttributeData> attributes)
32
using var result = TemporaryArray<
InterceptsLocationData
>.Empty;
36
if (TryGetInterceptsLocationData(attribute, out
var
data))
43
public static bool TryGetInterceptsLocationData(AttributeData attribute, out
InterceptsLocationData
result)
58
public static bool TryGetInterceptsLocationData(int version, string attributeData, out
InterceptsLocationData
result)
69
private static bool TryGetInterceptsLocationDataVersion1(string attributeData, out
InterceptsLocationData
result)