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();
33
public Query Condition { get { return
_cond
; } }
38
_cond
.SetXsltContext(input);
39
if (
_cond
.StaticType != XPathResultType.Number &&
_cond
.StaticType != XPathResultType.Any && _noPosition)
66
object value =
_cond
.Evaluate(qyInput);
67
if (value is XPathNodeIterator) return
_cond
.Advance() != null;
87
switch (
_cond
.StaticType)
90
OperandQuery? operand =
_cond
as OperandQuery;
137
_cond
.Evaluate(new XPathSingletonIterator(current, /*moved:*/true));
138
return (
_cond
.Advance() != null) ? context : null;
142
return ((bool)
_cond
.Evaluate(new XPathSingletonIterator(current, /*moved:*/true))) ? context : null;
148
return (((string)
_cond
.Evaluate(new XPathSingletonIterator(current, /*moved:*/true))).Length != 0) ? context : null;