11 references to DescendantOrSelf
dotnet-svcutil-lib (11)
FrameworkFork\Microsoft.Xml\Xml\schema\AstTree.cs (1)
557
return ((ast.TypeOfAxis == Axis.AxisType.
DescendantOrSelf
) && (ast.NodeType == XPathNodeType.All) && (ast.AbbrAxis));
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (3)
78
input.TypeOfAxis == Axis.AxisType.
DescendantOrSelf
&& input.NodeType == XPathNodeType.All
100
if (root.TypeOfAxis == Axis.AxisType.Descendant || root.TypeOfAxis == Axis.AxisType.
DescendantOrSelf
)
153
case Axis.AxisType.
DescendantOrSelf
:
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathParser.cs (7)
259
opnd = ParseRelativeLocationPath(new Axis(Axis.AxisType.
DescendantOrSelf
, opnd));
314
return ParseRelativeLocationPath(new Axis(Axis.AxisType.
DescendantOrSelf
, new Root()));
333
opnd = new Axis(Axis.AxisType.
DescendantOrSelf
, opnd);
638
opnd = new Axis(Axis.AxisType.
DescendantOrSelf
, new Root());
653
opnd = new Axis(Axis.AxisType.
DescendantOrSelf
, opnd);
709
opnd = ParseRelativePathPattern(new Axis(Axis.AxisType.
DescendantOrSelf
, opnd));
867
table.Add("descendant-or-self", Axis.AxisType.
DescendantOrSelf
);