31 references to Number
System.Private.Xml (31)
System\Xml\XPath\Internal\FilterQuery.cs (2)
39
if (_cond.StaticType != XPathResultType.
Number
&& _cond.StaticType != XPathResultType.Any && _noPosition)
89
case 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)
33
case XPathResultType.
Number
:
System\Xml\XPath\Internal\NumberFunctions.cs (2)
75
case XPathResultType.
Number
:
115
public override XPathResultType StaticType { get { return XPathResultType.
Number
; } }
System\Xml\XPath\Internal\NumericExpr.cs (3)
25
if (opnd1.StaticType != XPathResultType.
Number
)
29
if (opnd2.StaticType != XPathResultType.
Number
)
71
public 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)
75
return XPathResultType.
Number
;
System\Xml\XPath\Internal\Query.cs (1)
189
if (value is double) return XPathResultType.
Number
;
System\Xml\XPath\Internal\QueryBuilder.cs (2)
211
q.StaticType == XPathResultType.
Number
259
if (prevCond.StaticType == XPathResultType.
Number
)
System\Xml\XPath\Internal\StringFunctions.cs (2)
91
Debug.Assert(GetXPathType(argVal) == XPathResultType.
Number
);
105
return XPathResultType.
Number
;
System\Xml\XPath\Internal\XPathParser.cs (4)
573
case XPathResultType.
Number
:
785
private static readonly XPathResultType[] s_temparray6 = { XPathResultType.String, XPathResultType.
Number
, XPathResultType.
Number
};
788
private static readonly XPathResultType[] s_temparray9 = { XPathResultType.
Number
};
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (3)
567
return XPathResultType.
Number
;
728
case XPathResultType.
Number
: return ToNumeric(val, type);
937
public FuncFormatNumber() : base(2, 3, XPathResultType.String, new XPathResultType[] { XPathResultType.
Number
, XPathResultType.String, XPathResultType.String }) { }