2 instantiations of Int32Pair
System.Private.Xml (2)
System\Xml\Xsl\IlGen\StaticDataManager.cs (1)
93return _uniqueFilters.Add(new Int32Pair(DeclareName(locName), DeclareName(nsUri)));
System\Xml\Xsl\Runtime\XmlQueryStaticData.cs (1)
136_filters[idx] = new Int32Pair(dataReader.Read7BitEncodedInt(), dataReader.Read7BitEncodedInt());
11 references to Int32Pair
System.Private.Xml (11)
System\Xml\Xsl\IlGen\StaticDataManager.cs (3)
59private UniqueList<Int32Pair>? _uniqueFilters; 91_uniqueFilters ??= new UniqueList<Int32Pair>(); 100public Int32Pair[]? NameFilters
System\Xml\Xsl\Pair.cs (3)
10internal readonly struct Int32Pair : IEquatable<Int32Pair> 22other is Int32Pair o && Equals(o); 24public bool Equals(Int32Pair other) => Left == other.Left && Right == other.Right;
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
74Int32Pair[]? filters = data.Filters;
System\Xml\Xsl\Runtime\XmlQueryStaticData.cs (4)
29private readonly Int32Pair[]? _filters; 133_filters = new Int32Pair[length]; 257foreach (Int32Pair filter in _filters) 363public Int32Pair[]? Filters