47 references to All
System.Data (1)
fx\src\data\System\NewXml\XPathNodePointer.cs (1)
153
return XPathNodeType.
All
;
System.Data.SqlXml (32)
System\Xml\Xsl\IlGen\XmlIlVisitor.cs (4)
3057
kindsRuntime = XPathNodeType.
All
;
3065
if (kindsRuntime == XPathNodeType.
All
) {
4262
return XPathNodeType.
All
;
4282
this.helper.CallGetTypeFilter(XPathNodeType.
All
);
System\Xml\Xsl\Runtime\XmlNavigatorFilter.cs (2)
256
return navigator.MoveToFollowing(XPathNodeType.
All
, navEnd);
319
return navigator.MoveToFollowing(XPathNodeType.
All
, navEnd);
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
341
if (nodeType == XPathNodeType.
All
)
System\Xml\Xsl\XPath\XPathParser.cs (8)
82
Node opnd = builder.Axis(XPathAxis.Root, XPathNodeType.
All
, null, null);
91
builder.Axis(XPathAxis.Root, XPathNodeType.
All
, null, null),
93
builder.Axis(XPathAxis.DescendantOrSelf, XPathNodeType.
All
, null, null),
122
builder.Axis(XPathAxis.DescendantOrSelf, XPathNodeType.
All
, null, null),
138
opnd = builder.Axis(XPathAxis.Self, XPathNodeType.
All
, null, null);
144
opnd = builder.Axis(XPathAxis.Parent, XPathNodeType.
All
, null, null);
227
case "node" : nodeType = XPathNodeType.
All
; break;
404
builder.Axis(XPathAxis.DescendantOrSelf, XPathNodeType.
All
, null, null),
System\Xml\Xsl\Xslt\XPathPatternBuilder.cs (1)
124
Debug.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)
70
opnd = ptrnBuilder.Axis(XPathAxis.Root, XPathNodeType.
All
, null, null);
79
ptrnBuilder.Axis(XPathAxis.Root, XPathNodeType.
All
, null, null),
81
ptrnBuilder.Axis(XPathAxis.DescendantOrSelf, XPathNodeType.
All
, null, null),
97
ptrnBuilder.Axis(XPathAxis.DescendantOrSelf, XPathNodeType.
All
, null, null),
163
ptrnBuilder.Axis(XPathAxis.DescendantOrSelf, XPathNodeType.
All
, null, null),
System\Xml\Xsl\Xslt\XslAstAnalyzer.cs (1)
923
if (xpathAxis == XPathAxis.Self && nodeType == XPathNodeType.
All
&& prefix == null && name == null) {
System\Xml\Xsl\XsltOld\ApplyTemplatesAction.cs (1)
141
frame.InitNewNodeSet(frame.Node.SelectChildren(XPathNodeType.
All
));
System\Xml\Xsl\XsltOld\CopyNodesetAction.cs (1)
77
processor.PushActionFrame(GetAction(), frame.Node.SelectChildren(XPathNodeType.
All
));
System\Xml\Xsl\XsltOld\NumberAction.cs (2)
241
XPathNodeIterator sel = startNode.SelectDescendants(XPathNodeType.
All
, /*matchSelf:*/ true);
261
XPathNodeIterator sel = startNode.SelectDescendants(XPathNodeType.
All
, /*matchSelf:*/ true);
System\Xml\Xsl\XsltOld\Processor.cs (3)
778
case XPathNodeType.
All
:
805
case XPathNodeType.
All
:
833
case XPathNodeType.
All
:
System\Xml\Xsl\XsltOld\RecordBuilder.cs (1)
161
case XPathNodeType.
All
:
System\Xml\Xsl\XsltOld\TemplateLookupAction.cs (1)
81
case XPathNodeType.
All
:
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
257
XPathNodeIterator sel = root.SelectDescendants(XPathNodeType.
All
, /*matchSelf:*/ false);
System.Xml (14)
System\Xml\Cache\XPathDocumentNavigator.cs (2)
518
if (type != XPathNodeType.Text && type != XPathNodeType.
All
)
584
if (type == XPathNodeType.Text || type == XPathNodeType.
All
) {
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1201
Debug.Assert( this.NodeType != XPathNodeType.Attribute && this.NodeType != XPathNodeType.Namespace && this.NodeType != XPathNodeType.
All
);
System\Xml\Schema\Asttree.cs (2)
473
return ((ast.TypeOfAxis == Axis.AxisType.DescendantOrSelf) && (ast.NodeType == XPathNodeType.
All
) && (ast.AbbrAxis));
477
return ((ast.TypeOfAxis == Axis.AxisType.Self) && (ast.NodeType == XPathNodeType.
All
) && (ast.AbbrAxis));
System\Xml\XPath\Internal\Axis.cs (1)
53
: this(axisType, input, string.Empty, string.Empty, XPathNodeType.
All
)
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
81
TypeTest == XPathNodeType.
All
||
System\Xml\XPath\Internal\PrecedingQuery.cs (1)
67
workIterator = last.SelectDescendants(XPathNodeType.
All
, true);
System\Xml\XPath\Internal\QueryBuilder.cs (2)
70
input.TypeOfAxis == Axis.AxisType.DescendantOrSelf && input.NodeType == XPathNodeType.
All
164
if ((root.NodeType == XPathNodeType.
All
|| root.NodeType == XPathNodeType.Element || root.NodeType == XPathNodeType.Attribute) && root.Prefix.Length == 0) {
System\Xml\XPath\Internal\XPathAxisIterator.cs (1)
67
type == XPathNodeType.
All
||
System\Xml\XPath\Internal\XPathParser.cs (1)
360
this.scanner.Name == "node" ? XPathNodeType.
All
:
System\Xml\XPath\XPathNavigator.cs (1)
1686
if (type == XPathNodeType.
All
)
System\Xml\XPath\XPathNavigatorReader.cs (1)
1015
get { return XPathNodeType.
All
; }