16 references to Any
dotnet-svcutil-lib (16)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ExtensionQuery.cs (1)
131
public override XPathResultType StaticType { get { return XPathResultType.
Any
; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FilterQuery.cs (1)
42
if (_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)
114
XPathResultType result = _function != null ? _function.ReturnType : XPathResultType.
Any
;
118
result = XPathResultType.
Any
;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (2)
212
q.StaticType == XPathResultType.
Any
||
258
if (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
187
if (evalQuery.StaticType == XPathResultType.NodeSet || evalQuery.StaticType == XPathResultType.
Any
)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Variable.cs (1)
23
public override XPathResultType ReturnType { get { return XPathResultType.
Any
; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\VariableQuery.cs (2)
61
XPathResultType result = _variable != null ? _variable.VariableType : XPathResultType.
Any
;
65
result = XPathResultType.
Any
;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathParser.cs (4)
571
pi.ArgTypes[i] != XPathResultType.
Any
&&
578
if (!(arg is Variable) && !(arg is Function && arg.ReturnType == XPathResultType.
Any
))
786
if (t != XPathResultType.NodeSet && t != XPathResultType.
Any
)
795
private static readonly XPathResultType[] s_temparray3 = { XPathResultType.
Any
};