23 references to Any
System.Private.Xml (23)
System\Xml\XPath\Internal\ExtensionQuery.cs (1)
125
public override XPathResultType StaticType { get { return XPathResultType.
Any
; } }
System\Xml\XPath\Internal\FilterQuery.cs (1)
39
if (_cond.StaticType != XPathResultType.Number && _cond.StaticType != XPathResultType.
Any
&& _noPosition)
System\Xml\XPath\Internal\Function.cs (1)
115
/* FunctionType.FuncUserDefined */ XPathResultType.
Any
System\Xml\XPath\Internal\FunctionQuery.cs (2)
118
XPathResultType result = _function != null ? _function.ReturnType : XPathResultType.
Any
;
122
result = XPathResultType.
Any
;
System\Xml\XPath\Internal\QueryBuilder.cs (2)
210
q.StaticType == XPathResultType.
Any
||
256
if (qyFilter != null && (propsCond & Props.HasPosition) == 0 && qyFilter.Condition.StaticType != XPathResultType.
Any
)
System\Xml\XPath\Internal\SortQuery.cs (2)
43
_qyInput.StaticType != XPathResultType.
Any
178
if (evalQuery.StaticType == XPathResultType.NodeSet || evalQuery.StaticType == XPathResultType.
Any
)
System\Xml\XPath\Internal\Variable.cs (1)
20
public override XPathResultType ReturnType { get { return XPathResultType.
Any
; } }
System\Xml\XPath\Internal\VariableQuery.cs (2)
64
XPathResultType result = _variable != null ? _variable.VariableType : XPathResultType.
Any
;
68
result = XPathResultType.
Any
;
System\Xml\XPath\Internal\XPathParser.cs (4)
558
pi.ArgTypes[i] != XPathResultType.
Any
&&
565
if (!(arg is Variable) && !(arg is Function && arg.ReturnType == XPathResultType.
Any
))
773
if (t != XPathResultType.NodeSet && t != XPathResultType.
Any
)
782
private static readonly XPathResultType[] s_temparray3 = { XPathResultType.
Any
};
System\Xml\Xsl\XsltOld\VariableAction.cs (1)
189
get { return XPathResultType.
Any
; }
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (6)
162
if (required == XPathResultType.
Any
)
169
actual != XPathResultType.
Any
// actual arg is object and we can pass everithing here.
562
return XPathResultType.
Any
;
732
case XPathResultType.
Any
:
816
public FuncDocument() : base(1, 2, XPathResultType.NodeSet, new XPathResultType[] { XPathResultType.
Any
, XPathResultType.NodeSet }) { }
855
public FuncKey() : base(2, 2, XPathResultType.NodeSet, new XPathResultType[] { XPathResultType.String, XPathResultType.
Any
}) { }