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