19 references to IsNegativeInfinity
PresentationCore (2)
Core\CSharp\System\Windows\UIElement.cs (2)
1420return ( (!DoubleUtil.IsNaN(v.X) && !Double.IsPositiveInfinity(v.X) && !Double.IsNegativeInfinity(v.X)) 1421&& (!DoubleUtil.IsNaN(v.Y) && !Double.IsPositiveInfinity(v.Y) && !Double.IsNegativeInfinity(v.Y)));
PresentationFramework (12)
src\Framework\System\Windows\Controls\DataGridColumnCollection.cs (1)
904!DoubleUtil.IsNaN(availableStarSpace) && !Double.IsNegativeInfinity(availableStarSpace),
src\Framework\System\Windows\Controls\Stack.cs (1)
996if (Double.IsNegativeInfinity(offset))
src\Framework\System\Windows\CornerRadius.cs (4)
225if (Double.IsNegativeInfinity(_topLeft) || Double.IsNegativeInfinity(_topRight) || Double.IsNegativeInfinity(_bottomLeft) || Double.IsNegativeInfinity(_bottomRight))
src\Framework\System\Windows\Documents\FlowDocument.cs (1)
1558if (!Double.IsNegativeInfinity(value) && (value < 0 || value > maxSize))
src\Framework\System\Windows\Thickness.cs (4)
178if(Double.IsNegativeInfinity(Left) || Double.IsNegativeInfinity(Right) || Double.IsNegativeInfinity(Top) || Double.IsNegativeInfinity(Bottom))
src\Framework\System\Windows\Window.cs (1)
5963Double.IsNegativeInfinity(length))
System (2)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
2025else if( double.IsNegativeInfinity(d)) {
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
1236else if( double.IsNegativeInfinity(d)) {
System.Data.Entity (1)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (1)
1098else if(double.IsNegativeInfinity(value))
System.Runtime.Serialization (1)
System\Xml\XmlConverter.cs (1)
1004return ToInfinity(double.IsNegativeInfinity(value), buffer, offset);
System.Xml (1)
System\Xml\XmlConvert.cs (1)
734if (Double.IsNegativeInfinity(value)) return "-INF";