5 writes to qyInput
System.Xml (5)
System\Xml\XPath\Internal\BaseAxisQuery.cs (3)
34this.qyInput = qyInput; 38this.qyInput = qyInput; 46this.qyInput = Clone(other.qyInput);
System\Xml\XPath\Internal\FilterQuery.cs (1)
44qyInput = query.input;
System\Xml\XPath\Internal\QueryBuilder.cs (1)
252firstInput.qyInput = new ContextQuery();
44 references to qyInput
System.Xml (44)
System\Xml\XPath\Internal\AttributeQuery.cs (2)
30currentNode = qyInput.Advance(); 56return qyInput.MatchNode(temp);
System\Xml\XPath\Internal\BaseAxisQuery.cs (7)
46this.qyInput = Clone(other.qyInput); 60qyInput.Reset(); 66qyInput.SetXsltContext(context); 100qyInput.Evaluate(nodeIterator); 101AssertQuery(qyInput); 106if (qyInput.GetType() != typeof(ContextQuery)) { 129qyInput.PrintQuery(w);
System\Xml\XPath\Internal\CacheChildrenQuery.cs (1)
123result = qyInput.Advance();
System\Xml\XPath\Internal\ChildrenQuery.cs (2)
32XPathNavigator input = qyInput.Advance(); 57return qyInput.MatchNode(temp);
System\Xml\XPath\Internal\DescendantBaseQuery.cs (3)
35if ((result = qyInput.MatchNode(context)) != null) { 42if ((result = qyInput.MatchNode(anc)) != null) { 62qyInput.PrintQuery(w);
System\Xml\XPath\Internal\DescendantoverDescendantQuery.cs (1)
35currentNode = qyInput.Advance();
System\Xml\XPath\Internal\DescendantQuery.cs (1)
33XPathNavigator nav = qyInput.Advance();
System\Xml\XPath\Internal\FilterQuery.cs (9)
42ReversePositionQuery query = qyInput as ReversePositionQuery; 50while ((currentNode = qyInput.Advance()) != null) { 60object value = cond.Evaluate(qyInput); 63if (value is double ) return (((double)value) == qyInput.CurrentPosition); 74context = qyInput.MatchNode(current); 83ChildrenQuery childrenQuery = qyInput as ChildrenQuery; 99AttributeQuery attributeQuery = qyInput as AttributeQuery; 150return QueryProps.Position | (qyInput.Properties & (QueryProps.Merge | QueryProps.Reverse)); 162qyInput.PrintQuery(w);
System\Xml\XPath\Internal\FollowingQuery.cs (2)
31input = qyInput.Advance(); 39input = qyInput.Advance();
System\Xml\XPath\Internal\FollowingSibling.cs (2)
53input = qyInput.Advance(); 81nextInput = qyInput.Advance();
System\Xml\XPath\Internal\GroupQuery.cs (3)
21currentNode = qyInput.Advance(); 29return qyInput.Evaluate(nodeIterator); 33public override XPathResultType StaticType { get { return qyInput.StaticType; } }
System\Xml\XPath\Internal\NamespaceQuery.cs (1)
31currentNode = qyInput.Advance();
System\Xml\XPath\Internal\ParentQuery.cs (1)
26while ((input = qyInput.Advance()) != null) {
System\Xml\XPath\Internal\PrecedingQuery.cs (3)
48XPathNavigator input = qyInput.Advance(); 55} while ((input = qyInput.Advance()) != null); 77Debug.Assert(qyInput.Advance() == null, "we read all qyInput.Advance() already");
System\Xml\XPath\Internal\PrecedingSibling.cs (1)
51while ((currentNode = qyInput.Advance()) != null) {
System\Xml\XPath\Internal\QueryBuilder.cs (2)
226qyInput = qyFilter.qyInput; 250Query parent = firstInput.qyInput;
System\Xml\XPath\Internal\XPathAncestorQuery.cs (2)
30while ((input = qyInput.Advance()) != null) { 69qyInput.PrintQuery(w);
System\Xml\XPath\Internal\XPathSelfQuery.cs (1)
19while ((currentNode = qyInput.Advance()) != null) {