2 writes to _cond
System.Private.Xml (2)
System\Xml\XPath\Internal\FilterQuery.cs (2)
18_cond = cond; 23_cond = Clone(other._cond);
14 references to _cond
System.Private.Xml (14)
System\Xml\XPath\Internal\FilterQuery.cs (14)
23_cond = Clone(other._cond); 29_cond.Reset(); 33public Query Condition { get { return _cond; } } 38_cond.SetXsltContext(input); 39if (_cond.StaticType != XPathResultType.Number && _cond.StaticType != XPathResultType.Any && _noPosition) 66object value = _cond.Evaluate(qyInput); 67if (value is XPathNodeIterator) return _cond.Advance() != null; 87switch (_cond.StaticType) 90OperandQuery? operand = _cond as OperandQuery; 137_cond.Evaluate(new XPathSingletonIterator(current, /*moved:*/true)); 138return (_cond.Advance() != null) ? context : null; 142return ((bool)_cond.Evaluate(new XPathSingletonIterator(current, /*moved:*/true))) ? context : null; 148return (((string)_cond.Evaluate(new XPathSingletonIterator(current, /*moved:*/true))).Length != 0) ? context : null;