31 references to Number
System.Private.Xml (31)
System\Xml\XPath\Internal\FilterQuery.cs (2)
39if (_cond.StaticType != XPathResultType.Number && _cond.StaticType != XPathResultType.Any && _noPosition) 89case XPathResultType.Number:
System\Xml\XPath\Internal\Function.cs (9)
88/* FunctionType.FuncLast */ XPathResultType.Number, 89/* FunctionType.FuncPosition */ XPathResultType.Number, 90/* FunctionType.FuncCount */ XPathResultType.Number, 97/* FunctionType.FuncNumber */ XPathResultType.Number, 107/* FunctionType.FuncStringLength */ XPathResultType.Number, 111/* FunctionType.FuncSum */ XPathResultType.Number, 112/* FunctionType.FuncFloor */ XPathResultType.Number, 113/* FunctionType.FuncCeiling */ XPathResultType.Number, 114/* FunctionType.FuncRound */ XPathResultType.Number,
System\Xml\XPath\Internal\IdQuery.cs (1)
33case XPathResultType.Number:
System\Xml\XPath\Internal\NumberFunctions.cs (2)
75case XPathResultType.Number: 115public override XPathResultType StaticType { get { return XPathResultType.Number; } }
System\Xml\XPath\Internal\NumericExpr.cs (3)
25if (opnd1.StaticType != XPathResultType.Number) 29if (opnd2.StaticType != XPathResultType.Number) 71public override XPathResultType StaticType { get { return XPathResultType.Number; } }
System\Xml\XPath\Internal\Operand.cs (1)
21_type = XPathResultType.Number;
System\Xml\XPath\Internal\Operator.cs (1)
75return XPathResultType.Number;
System\Xml\XPath\Internal\Query.cs (1)
189if (value is double) return XPathResultType.Number;
System\Xml\XPath\Internal\QueryBuilder.cs (2)
211q.StaticType == XPathResultType.Number 259if (prevCond.StaticType == XPathResultType.Number)
System\Xml\XPath\Internal\StringFunctions.cs (2)
91Debug.Assert(GetXPathType(argVal) == XPathResultType.Number); 105return XPathResultType.Number;
System\Xml\XPath\Internal\XPathParser.cs (4)
573case XPathResultType.Number: 785private static readonly XPathResultType[] s_temparray6 = { XPathResultType.String, XPathResultType.Number, XPathResultType.Number }; 788private static readonly XPathResultType[] s_temparray9 = { XPathResultType.Number };
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (3)
567return XPathResultType.Number; 728case XPathResultType.Number: return ToNumeric(val, type); 937public FuncFormatNumber() : base(2, 3, XPathResultType.String, new XPathResultType[] { XPathResultType.Number, XPathResultType.String, XPathResultType.String }) { }