16 references to Any
dotnet-svcutil-lib (16)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ExtensionQuery.cs (1)
131public override XPathResultType StaticType { get { return XPathResultType.Any; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FilterQuery.cs (1)
42if (_cond.StaticType != XPathResultType.Number && _cond.StaticType != XPathResultType.Any && _noPosition)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Function.cs (1)
122/* FunctionType.FuncUserDefined */ XPathResultType.Any
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FunctionQuery.cs (2)
114XPathResultType result = _function != null ? _function.ReturnType : XPathResultType.Any; 118result = XPathResultType.Any;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (2)
212q.StaticType == XPathResultType.Any || 258if (qyFilter != null && (propsCond & Props.HasPosition) == 0 && qyFilter.Condition.StaticType != XPathResultType.Any)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\SortQuery.cs (2)
44_qyInput.StaticType != XPathResultType.Any 187if (evalQuery.StaticType == XPathResultType.NodeSet || evalQuery.StaticType == XPathResultType.Any)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Variable.cs (1)
23public override XPathResultType ReturnType { get { return XPathResultType.Any; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\VariableQuery.cs (2)
61XPathResultType result = _variable != null ? _variable.VariableType : XPathResultType.Any; 65result = XPathResultType.Any;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathParser.cs (4)
571pi.ArgTypes[i] != XPathResultType.Any && 578if (!(arg is Variable) && !(arg is Function && arg.ReturnType == XPathResultType.Any)) 786if (t != XPathResultType.NodeSet && t != XPathResultType.Any) 795private static readonly XPathResultType[] s_temparray3 = { XPathResultType.Any };