28 references to Number
dotnet-svcutil-lib (28)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FilterQuery.cs (2)
42if (_cond.StaticType != XPathResultType.Number && _cond.StaticType != XPathResultType.Any && _noPosition) 92case XPathResultType.Number:
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Function.cs (9)
95/* FunctionType.FuncLast */ XPathResultType.Number , 96/* FunctionType.FuncPosition */ XPathResultType.Number , 97/* FunctionType.FuncCount */ XPathResultType.Number , 104/* FunctionType.FuncNumber */ XPathResultType.Number , 114/* FunctionType.FuncStringLength */ XPathResultType.Number , 118/* FunctionType.FuncSum */ XPathResultType.Number , 119/* FunctionType.FuncFloor */ XPathResultType.Number , 120/* FunctionType.FuncCeiling */ XPathResultType.Number , 121/* FunctionType.FuncRound */ XPathResultType.Number ,
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\IDQuery.cs (1)
36case XPathResultType.Number:
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\NumberFunctions.cs (2)
82case XPathResultType.Number: 118public override XPathResultType StaticType { get { return XPathResultType.Number; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\NumericExpr.cs (3)
28if (opnd1.StaticType != XPathResultType.Number) 32if (opnd2.StaticType != XPathResultType.Number) 74public override XPathResultType StaticType { get { return XPathResultType.Number; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Operand.cs (1)
26_type = XPathResultType.Number;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Operator.cs (1)
78return XPathResultType.Number;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Query.cs (1)
252if (value is double) return XPathResultType.Number;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (2)
213q.StaticType == XPathResultType.Number 261if (prevCond.StaticType == XPathResultType.Number)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\StringFunctions.cs (2)
94Debug.Assert(GetXPathType(argVal) == XPathResultType.Number); 107return XPathResultType.Number;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathParser.cs (4)
586case XPathResultType.Number: 798private static readonly XPathResultType[] s_temparray6 = { XPathResultType.String, XPathResultType.Number, XPathResultType.Number }; 801private static readonly XPathResultType[] s_temparray9 = { XPathResultType.Number };