2 instantiations of InternPathIds
MSBuildTaskHost (2)
InterningReadTranslator.cs (1)
56
InternPathIds pathIds =
new
(directoryKey, fileNameKey);
InterningWriteTranslator.cs (1)
153
_stringToPathIds.Add(str, new
InternPathIds
(directoryIndex, fileNameIndex));
5 references to InternPathIds
MSBuildTaskHost (5)
InterningReadTranslator.cs (2)
23
private Dictionary<
InternPathIds
, string> _pathIdsToString = [];
56
InternPathIds
pathIds = new(directoryKey, fileNameKey);
InterningWriteTranslator.cs (3)
42
private Dictionary<string,
InternPathIds
> _stringToPathIds = [];
86
_stringToPathIds = new Dictionary<string,
InternPathIds
>(initialCapacity, comparer);
122
if (_stringToPathIds.TryGetValue(str, out
InternPathIds
pathIds))