3 instantiations of HashKey
Microsoft.Build (3)
Logging\BinaryLogger\BuildEventArgsWriter.cs (3)
1172
HashKey hash = new
HashKey
();
1257
var hash = new
HashKey
(text);
1353
return new
HashKey
(FowlerNollVo1aHash.Combine64(left.value, right.value));
17 references to HashKey
Microsoft.Build (17)
Logging\BinaryLogger\BuildEventArgsWriter.cs (17)
75
private readonly Dictionary<
HashKey
, int> stringHashes = new Dictionary<
HashKey
, int>();
80
private readonly Dictionary<
HashKey
, int> nameValueListHashes = new Dictionary<
HashKey
, int>();
1116
HashKey
hash = HashAllStrings(nameValueListBuffer);
1170
private
HashKey
HashAllStrings(List<KeyValuePair<string, string>> nameValueList)
1172
HashKey
hash = new HashKey();
1246
private (int index,
HashKey
hash) HashString(string text)
1257
var
hash = new HashKey(text);
1330
internal readonly struct HashKey : IEquatable<
HashKey
>
1351
public static
HashKey
Combine(
HashKey
left,
HashKey
right)
1356
public
HashKey
Add(
HashKey
other) => Combine(this, other);
1358
public bool Equals(
HashKey
other)
1365
if (obj is
HashKey
other)