5 writes to qyInput
System.Private.Xml (5)
System\Xml\XPath\Internal\BaseAxisQuery.cs (3)
30this.qyInput = qyInput; 35this.qyInput = qyInput; 44this.qyInput = Clone(other.qyInput);
System\Xml\XPath\Internal\FilterQuery.cs (1)
46qyInput = query.input;
System\Xml\XPath\Internal\QueryBuilder.cs (1)
296_firstInput.qyInput = new ContextQuery();
39 references to qyInput
System.Private.Xml (39)
System\Xml\XPath\Internal\AttributeQuery.cs (2)
31currentNode = qyInput.Advance(); 67return qyInput.MatchNode(temp);
System\Xml\XPath\Internal\BaseAxisQuery.cs (5)
44this.qyInput = Clone(other.qyInput); 59qyInput.Reset(); 66qyInput.SetXsltContext(context); 108qyInput.Evaluate(nodeIterator); 116if (qyInput.GetType() != typeof(ContextQuery))
System\Xml\XPath\Internal\CacheChildrenQuery.cs (1)
133result = qyInput.Advance();
System\Xml\XPath\Internal\ChildrenQuery.cs (2)
28XPathNavigator? input = qyInput.Advance(); 64return qyInput.MatchNode(temp);
System\Xml\XPath\Internal\DescendantBaseQuery.cs (2)
39if ((result = qyInput.MatchNode(context)) != null) 48if ((result = qyInput.MatchNode(anc)) != null)
System\Xml\XPath\Internal\DescendantoverDescendantQuery.cs (1)
37currentNode = qyInput.Advance();
System\Xml\XPath\Internal\DescendantQuery.cs (1)
34XPathNavigator? nav = qyInput.Advance();
System\Xml\XPath\Internal\FilterQuery.cs (8)
43ReversePositionQuery? query = qyInput as ReversePositionQuery; 53while ((currentNode = qyInput.Advance()) != null) 66object value = _cond.Evaluate(qyInput); 69if (value is double) return (((double)value) == qyInput.CurrentPosition); 82context = qyInput.MatchNode(current); 94ChildrenQuery? childrenQuery = qyInput as ChildrenQuery; 114AttributeQuery? attributeQuery = qyInput as AttributeQuery; 176return QueryProps.Position | (qyInput.Properties & (QueryProps.Merge | QueryProps.Reverse));
System\Xml\XPath\Internal\FollowingQuery.cs (2)
31_input = qyInput.Advance(); 41_input = qyInput.Advance();
System\Xml\XPath\Internal\FollSiblingQuery.cs (2)
56input = qyInput.Advance(); 91_nextInput = qyInput.Advance();
System\Xml\XPath\Internal\GroupQuery.cs (3)
15currentNode = qyInput.Advance(); 25return qyInput.Evaluate(nodeIterator); 29public override XPathResultType StaticType { get { return qyInput.StaticType; } }
System\Xml\XPath\Internal\NamespaceQuery.cs (1)
31currentNode = qyInput.Advance();
System\Xml\XPath\Internal\ParentQuery.cs (1)
18while ((input = qyInput.Advance()) != null)
System\Xml\XPath\Internal\PrecedingQuery.cs (3)
49XPathNavigator? input = qyInput.Advance(); 58} while ((input = qyInput.Advance()) != null); 85Debug.Assert(qyInput.Advance() == null, "we read all qyInput.Advance() already");
System\Xml\XPath\Internal\PreSiblingQuery.cs (1)
50while ((currentNode = qyInput.Advance()) != null)
System\Xml\XPath\Internal\QueryBuilder.cs (2)
264qyInput = qyFilter.qyInput; 293Query parent = _firstInput.qyInput;
System\Xml\XPath\Internal\XPathAncestorQuery.cs (1)
28while ((input = qyInput.Advance()) != null)
System\Xml\XPath\Internal\XPathSelfQuery.cs (1)
15while ((currentNode = qyInput.Advance()) != null)