2 instantiations of Int32Pair
System.Private.Xml (2)
System\Xml\Xsl\IlGen\StaticDataManager.cs (1)
93
return _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)
59
private UniqueList<
Int32Pair
>? _uniqueFilters;
91
_uniqueFilters ??= new UniqueList<
Int32Pair
>();
100
public
Int32Pair
[]? NameFilters
System\Xml\Xsl\Pair.cs (3)
10
internal readonly struct Int32Pair : IEquatable<
Int32Pair
>
22
other is
Int32Pair
o && Equals(o);
24
public bool Equals(
Int32Pair
other) => Left == other.Left && Right == other.Right;
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
74
Int32Pair
[]? filters = data.Filters;
System\Xml\Xsl\Runtime\XmlQueryStaticData.cs (4)
29
private readonly
Int32Pair
[]? _filters;
133
_filters = new
Int32Pair
[length];
257
foreach (
Int32Pair
filter in _filters)
363
public
Int32Pair
[]? Filters