47 references to All
System.Data.Common (1)
System\Xml\XPathNodePointer.cs (1)
151return XPathNodeType.All;
System.Private.Xml (46)
System\Xml\Cache\XPathDocumentNavigator.cs (2)
577if (type != XPathNodeType.Text && type != XPathNodeType.All) 649if (type == XPathNodeType.Text || type == XPathNodeType.All)
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1456Debug.Assert(this.NodeType != XPathNodeType.Attribute && this.NodeType != XPathNodeType.Namespace && this.NodeType != XPathNodeType.All);
System\Xml\Schema\Asttree.cs (2)
538return ((ast.TypeOfAxis == Axis.AxisType.DescendantOrSelf) && (ast.NodeType == XPathNodeType.All) && (ast.AbbrAxis)); 543return ((ast.TypeOfAxis == Axis.AxisType.Self) && (ast.NodeType == XPathNodeType.All) && (ast.AbbrAxis));
System\Xml\XPath\Internal\Axis.cs (1)
50: this(axisType, input, string.Empty, string.Empty, XPathNodeType.All)
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
81TypeTest == XPathNodeType.All ||
System\Xml\XPath\Internal\PrecedingQuery.cs (1)
72_workIterator = last.SelectDescendants(XPathNodeType.All, true);
System\Xml\XPath\Internal\QueryBuilder.cs (2)
76input.TypeOfAxis == Axis.AxisType.DescendantOrSelf && input.NodeType == XPathNodeType.All 191if ((root.NodeType == XPathNodeType.All || root.NodeType == XPathNodeType.Element || root.NodeType == XPathNodeType.Attribute) && root.Prefix.Length == 0)
System\Xml\XPath\Internal\XPathAxisIterator.cs (1)
71type == XPathNodeType.All ||
System\Xml\XPath\Internal\XPathParser.cs (1)
411_scanner.Name == "node" ? XPathNodeType.All :
System\Xml\XPath\XPathNavigator.cs (1)
1917if (type == XPathNodeType.All)
System\Xml\XPath\XPathNavigatorReader.cs (1)
1160get { return XPathNodeType.All; }
System\Xml\Xsl\IlGen\XmlIlVisitor.cs (4)
3289kindsRuntime = XPathNodeType.All; 3297if (kindsRuntime == XPathNodeType.All) 4605return XPathNodeType.All; 4630_helper.CallGetTypeFilter(XPathNodeType.All);
System\Xml\Xsl\Runtime\XmlNavigatorFilter.cs (2)
282return navigator.MoveToFollowing(XPathNodeType.All, navEnd); 354return navigator.MoveToFollowing(XPathNodeType.All, navEnd);
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
353if (nodeType == XPathNodeType.All)
System\Xml\Xsl\XPath\XPathParser.cs (8)
86Node opnd = _builder!.Axis(XPathAxis.Root, XPathNodeType.All, null, null); 98_builder.Axis(XPathAxis.Root, XPathNodeType.All, null, null), 100_builder.Axis(XPathAxis.DescendantOrSelf, XPathNodeType.All, null, null), 137_builder.Axis(XPathAxis.DescendantOrSelf, XPathNodeType.All, null, null), 155opnd = _builder!.Axis(XPathAxis.Self, XPathNodeType.All, null, null); 164opnd = _builder!.Axis(XPathAxis.Parent, XPathNodeType.All, null, null); 260case "node": nodeType = XPathNodeType.All; break; 461_builder.Axis(XPathAxis.DescendantOrSelf, XPathNodeType.All, null, null),
System\Xml\Xsl\Xslt\XPathPatternBuilder.cs (1)
133Debug.Assert(nodeType == XPathNodeType.All && prefix == null && name == null, " // is the only d-o-s axes that we can have in pattern");
System\Xml\Xsl\Xslt\XPathPatternParser.cs (5)
75opnd = _ptrnBuilder!.Axis(XPathAxis.Root, XPathNodeType.All, null, null); 85_ptrnBuilder.Axis(XPathAxis.Root, XPathNodeType.All, null, null), 87_ptrnBuilder.Axis(XPathAxis.DescendantOrSelf, XPathNodeType.All, null, null), 105_ptrnBuilder.Axis(XPathAxis.DescendantOrSelf, XPathNodeType.All, null, null), 181_ptrnBuilder.Axis(XPathAxis.DescendantOrSelf, XPathNodeType.All, null, null),
System\Xml\Xsl\Xslt\XslAstAnalyzer.cs (1)
1022if (xpathAxis == XPathAxis.Self && nodeType == XPathNodeType.All && prefix == null && name == null)
System\Xml\Xsl\XsltOld\ApplyTemplatesAction.cs (1)
155frame.InitNewNodeSet(frame.Node.SelectChildren(XPathNodeType.All));
System\Xml\Xsl\XsltOld\CopyNodeSetAction.cs (1)
84processor.PushActionFrame(GetAction(), frame.Node.SelectChildren(XPathNodeType.All));
System\Xml\Xsl\XsltOld\NumberAction.cs (2)
263XPathNodeIterator sel = startNode.SelectDescendants(XPathNodeType.All, /*matchSelf:*/ true); 289XPathNodeIterator sel = startNode.SelectDescendants(XPathNodeType.All, /*matchSelf:*/ true);
System\Xml\Xsl\XsltOld\Processor.cs (3)
862case XPathNodeType.All: 891case XPathNodeType.All: 921case XPathNodeType.All:
System\Xml\Xsl\XsltOld\RecordBuilder.cs (1)
172case XPathNodeType.All:
System\Xml\Xsl\XsltOld\TemplateLookupAction.cs (1)
85case XPathNodeType.All:
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
301XPathNodeIterator sel = root.SelectDescendants(XPathNodeType.All, /*matchSelf:*/ false);