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