Negative 395 Source/core/html/forms/RangeInputType.cpp const Decimal closestLeft = middle ? m_tickMarkValues[middle - 1] : Decimal::infinity(Decimal::Negative); Negative 547 Source/core/xml/XPathGrammar.y $$ = new Negative; Negative 59 Source/core/xml/XPathPredicate.cpp Value Negative::evaluate() const Negative 57 Source/core/xml/XPathPredicate.h class Negative FINAL : public Expression { Negative 279 Source/platform/Decimal.cpp : m_data(i32 < 0 ? Negative : Positive, 0, i32 < 0 ? static_cast<uint64_t>(-static_cast<int64_t>(i32)) : static_cast<uint64_t>(i32)) Negative 368 Source/platform/Decimal.cpp if (lhsSign == Negative && rhsSign == Positive && !result) Negative 406 Source/platform/Decimal.cpp if (lhsSign == Negative && rhsSign == Negative && !result) Negative 419 Source/platform/Decimal.cpp const Sign resultSign = lhsSign == rhsSign ? Positive : Negative; Negative 457 Source/platform/Decimal.cpp const Sign resultSign = lhsSign == rhsSign ? Positive : Negative; Negative 688 Source/platform/Decimal.cpp return infinity(doubleValue < 0 ? Negative : Positive); Negative 770 Source/platform/Decimal.cpp exponentSign = Negative; Negative 789 Source/platform/Decimal.cpp return exponentSign == Negative ? zero(Positive) : infinity(sign); Negative 827 Source/platform/Decimal.cpp sign = Negative; Negative 867 Source/platform/Decimal.cpp int resultExponent = exponent * (exponentSign == Negative ? -1 : 1) - numberOfDigitsAfterDot + numberOfExtraDigits; Negative 130 Source/platform/Decimal.h bool isNegative() const { return sign() == Negative; } Negative 173 Source/platform/Decimal.h static inline Sign invertSign(Sign sign) { return sign == Negative ? Positive : Negative; } Negative 47 Source/platform/DecimalTest.cpp << ", " << (data.sign() == Decimal::Negative ? "Negative" : "Positive") Negative 81 Source/platform/DecimalTest.cpp protected: static const Sign Negative = Decimal::Negative; Negative 127 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 0, Positive), encode(0, 0, Negative).abs()); Negative 130 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 10, Positive), encode(0, 10, Negative).abs()); Negative 133 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, -10, Positive), encode(0, -10, Negative).abs()); Negative 136 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 0, Positive), encode(1, 0, Negative).abs()); Negative 139 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 10, Positive), encode(1, 10, Negative).abs()); Negative 142 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, -10, Positive), encode(1, -10, Negative).abs()); Negative 148 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 1000, Positive), encode(1, 1000, Negative).abs()); Negative 154 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, -1000, Positive), encode(1, -1000, Negative).abs()); Negative 160 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Positive), Decimal::infinity(Negative).abs()); Negative 170 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(100, 0, Negative), Decimal(-50) + Decimal(-50)); Negative 196 Source/platform/DecimalTest.cpp const Decimal MinusInfinity(Decimal::infinity(Negative)); Negative 235 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(0), encode(1, -10, Negative).ceiling()); Negative 236 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-1), encode(11, -1, Negative).ceiling()); Negative 237 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-1), encode(13, -1, Negative).ceiling()); Negative 238 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-1), encode(15, -1, Negative).ceiling()); Negative 239 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-1), encode(19, -1, Negative).ceiling()); Negative 240 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-1), encode(151, -2, Negative).ceiling()); Negative 241 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-1), encode(101, -2, Negative).ceiling()); Negative 242 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(0), encode(199, -3, Negative).ceiling()); Negative 243 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-1), encode(199, -2, Negative).ceiling()); Negative 244 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-2), encode(209, -2, Negative).ceiling()); Negative 250 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 1000, Negative), encode(1, 1000, Negative).ceiling()); Negative 256 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 0, Negative), encode(1, -1000, Negative).ceiling()); Negative 262 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Negative), Decimal::infinity(Negative).ceiling()); Negative 292 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(1, 1000, Negative) == encode(1, 1000, Negative)); Negative 293 Source/platform/DecimalTest.cpp EXPECT_FALSE(encode(1, 1000, Negative) != encode(1, 1000, Negative)); Negative 294 Source/platform/DecimalTest.cpp EXPECT_FALSE(encode(1, 1000, Negative) < encode(1, 1000, Negative)); Negative 295 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(1, 1000, Negative) <= encode(1, 1000, Negative)); Negative 296 Source/platform/DecimalTest.cpp EXPECT_FALSE(encode(1, 1000, Negative) > encode(1, 1000, Negative)); Negative 297 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(1, 1000, Negative) >= encode(1, 1000, Negative)); Negative 306 Source/platform/DecimalTest.cpp EXPECT_FALSE(encode(2, 1000, Negative) == encode(1, 1000, Negative)); Negative 307 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(2, 1000, Negative) != encode(1, 1000, Negative)); Negative 308 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(2, 1000, Negative) < encode(1, 1000, Negative)); Negative 309 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(2, 1000, Negative) <= encode(1, 1000, Negative)); Negative 310 Source/platform/DecimalTest.cpp EXPECT_FALSE(encode(2, 1000, Negative) > encode(1, 1000, Negative)); Negative 311 Source/platform/DecimalTest.cpp EXPECT_FALSE(encode(2, 1000, Negative) >= encode(1, 1000, Negative)); Negative 323 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(1, -1000, Negative) == encode(1, -1000, Negative)); Negative 324 Source/platform/DecimalTest.cpp EXPECT_FALSE(encode(1, -1000, Negative) != encode(1, -1000, Negative)); Negative 325 Source/platform/DecimalTest.cpp EXPECT_FALSE(encode(1, -1000, Negative) < encode(1, -1000, Negative)); Negative 326 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(1, -1000, Negative) <= encode(1, -1000, Negative)); Negative 327 Source/platform/DecimalTest.cpp EXPECT_FALSE(encode(1, -1000, Negative) > encode(1, -1000, Negative)); Negative 328 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(1, -1000, Negative) >= encode(1, -1000, Negative)); Negative 337 Source/platform/DecimalTest.cpp EXPECT_FALSE(encode(2, -1000, Negative) == encode(1, -1000, Negative)); Negative 338 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(2, -1000, Negative) != encode(1, -1000, Negative)); Negative 339 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(2, -1000, Negative) < encode(1, -1000, Negative)); Negative 340 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(2, -1000, Negative) <= encode(1, -1000, Negative)); Negative 341 Source/platform/DecimalTest.cpp EXPECT_FALSE(encode(2, -1000, Negative) > encode(1, -1000, Negative)); Negative 342 Source/platform/DecimalTest.cpp EXPECT_FALSE(encode(2, -1000, Negative) >= encode(1, -1000, Negative)); Negative 348 Source/platform/DecimalTest.cpp const Decimal MinusInfinity(Decimal::infinity(Negative)); Negative 351 Source/platform/DecimalTest.cpp const Decimal MinusZero(Decimal::zero(Negative)); Negative 470 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_ENCODED_DATA_EQ(0u, 0, Negative, encode(0, 0, Negative)); Negative 472 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_ENCODED_DATA_EQ(1u, 0, Negative, encode(1, 0, Negative)); Negative 474 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_ENCODED_DATA_EQ(1u, 1022, Negative, encode(1, 1022, Negative)); Negative 476 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_ENCODED_DATA_EQ(1u, 1023, Negative, encode(1, 1023, Negative)); Negative 478 Source/platform/DecimalTest.cpp EXPECT_TRUE(encode(1, 2000, Negative).isInfinity()); Negative 480 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_ENCODED_DATA_EQ(0u, 0, Negative, encode(1, -2000, Negative)); Negative 482 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_ENCODED_DATA_EQ(UINT64_C(99999999999999998), 0, Negative, encode(UINT64_C(99999999999999998), 0, Negative)); Negative 484 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_ENCODED_DATA_EQ(UINT64_C(99999999999999999), 0, Negative, encode(UINT64_C(99999999999999999), 0, Negative)); Negative 486 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_ENCODED_DATA_EQ(UINT64_C(10000000000000000), 1, Negative, encode(UINT64_C(100000000000000000), 0, Negative)); Negative 492 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(2, 0, Negative), Decimal(2) / Decimal(-1)); Negative 493 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(5, -1, Negative), Decimal(-1) / Decimal(2)); Negative 516 Source/platform/DecimalTest.cpp const Decimal MinusInfinity(Decimal::infinity(Negative)); Negative 519 Source/platform/DecimalTest.cpp const Decimal MinusZero(Decimal::zero(Negative)); Negative 561 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 0, Negative), encode(0, 0, Negative)); Negative 563 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 0, Negative), encode(1, 0, Negative)); Negative 580 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-1), encode(1, -10, Negative).floor()); Negative 581 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-2), encode(11, -1, Negative).floor()); Negative 582 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-2), encode(13, -1, Negative).floor()); Negative 583 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-2), encode(15, -1, Negative).floor()); Negative 584 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-2), encode(19, -1, Negative).floor()); Negative 585 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-2), encode(193332, -5, Negative).floor()); Negative 586 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-13), encode(12002, -3, Negative).floor()); Negative 592 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 1000, Negative), encode(1, 1000, Negative).floor()); Negative 598 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 0, Negative), encode(1, -1000, Negative).floor()); Negative 604 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Negative), Decimal::infinity(Negative).floor()); Negative 611 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 0, Negative), Decimal::fromDouble(-0.0)); Negative 613 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 0, Negative), Decimal::fromDouble(-1)); Negative 615 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, 0, Negative), Decimal::fromDouble(-123)); Negative 617 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, -1, Negative), Decimal::fromDouble(-0.1)); Negative 623 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(UINT64_C(2220446049250313), -31, Negative), Decimal::fromDouble(-std::numeric_limits<double>::epsilon())); Negative 625 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(UINT64_C(17976931348623157), 292, Negative), Decimal::fromDouble(-std::numeric_limits<double>::max())); Negative 627 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(UINT64_C(22250738585072014), -324, Negative), Decimal::fromDouble(-std::numeric_limits<double>::min())); Negative 638 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 0, Negative), Decimal(-1)); Negative 640 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(100, 0, Negative), Decimal(-100)); Negative 642 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0x80000000u, 0, Negative), Decimal(std::numeric_limits<int32_t>::min())); Negative 648 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 0, Negative), fromString("-0")); Negative 650 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 0, Negative), fromString("-1")); Negative 656 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(100, 0, Negative), fromString("-100")); Negative 658 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, -2, Negative), fromString("-1.23")); Negative 660 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, 8, Negative), fromString("-1.23E10")); Negative 662 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, 8, Negative), fromString("-1.23E+10")); Negative 664 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, -12, Negative), fromString("-1.23E-10")); Negative 720 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(2, 0, Negative), Decimal(2) * Decimal(-1)); Negative 721 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(2, 0, Negative), Decimal(-1) * Decimal(2)); Negative 743 Source/platform/DecimalTest.cpp const Decimal MinusInfinity(Decimal::infinity(Negative)); Negative 748 Source/platform/DecimalTest.cpp const Decimal MinusZero(Decimal::zero(Negative)); Negative 787 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 0, Negative), -encode(0, 0, Positive)); Negative 788 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 0, Positive), -encode(0, 0, Negative)); Negative 790 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 10, Negative), -encode(0, 10, Positive)); Negative 791 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 10, Positive), -encode(0, 10, Negative)); Negative 793 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, -10, Negative), -encode(0, -10, Positive)); Negative 794 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, -10, Positive), -encode(0, -10, Negative)); Negative 796 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 0, Negative), -encode(1, 0, Positive)); Negative 797 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 0, Positive), -encode(1, 0, Negative)); Negative 799 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 10, Negative), -encode(1, 10, Positive)); Negative 800 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 10, Positive), -encode(1, 10, Negative)); Negative 802 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, -10, Negative), -encode(1, -10, Positive)); Negative 803 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, -10, Positive), -encode(1, -10, Negative)); Negative 808 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 1000, Negative), -encode(1, 1000, Positive)); Negative 809 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 1000, Positive), -encode(1, 1000, Negative)); Negative 814 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, -1000, Negative), -encode(1, -1000, Positive)); Negative 815 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, -1000, Positive), -encode(1, -1000, Negative)); Negative 820 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Negative), -Decimal::infinity(Positive)); Negative 821 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Positive), -Decimal::infinity(Negative)); Negative 835 Source/platform/DecimalTest.cpp EXPECT_TRUE(Decimal::zero(Negative).isFinite()); Negative 836 Source/platform/DecimalTest.cpp EXPECT_FALSE(Decimal::zero(Negative).isInfinity()); Negative 837 Source/platform/DecimalTest.cpp EXPECT_FALSE(Decimal::zero(Negative).isNaN()); Negative 838 Source/platform/DecimalTest.cpp EXPECT_FALSE(Decimal::zero(Negative).isPositive()); Negative 839 Source/platform/DecimalTest.cpp EXPECT_TRUE(Decimal::zero(Negative).isNegative()); Negative 840 Source/platform/DecimalTest.cpp EXPECT_FALSE(Decimal::zero(Negative).isSpecial()); Negative 841 Source/platform/DecimalTest.cpp EXPECT_TRUE(Decimal::zero(Negative).isZero()); Negative 870 Source/platform/DecimalTest.cpp EXPECT_FALSE(Decimal::infinity(Negative).isFinite()); Negative 871 Source/platform/DecimalTest.cpp EXPECT_TRUE(Decimal::infinity(Negative).isInfinity()); Negative 872 Source/platform/DecimalTest.cpp EXPECT_FALSE(Decimal::infinity(Negative).isNaN()); Negative 873 Source/platform/DecimalTest.cpp EXPECT_FALSE(Decimal::infinity(Negative).isPositive()); Negative 874 Source/platform/DecimalTest.cpp EXPECT_TRUE(Decimal::infinity(Negative).isNegative()); Negative 875 Source/platform/DecimalTest.cpp EXPECT_TRUE(Decimal::infinity(Negative).isSpecial()); Negative 876 Source/platform/DecimalTest.cpp EXPECT_FALSE(Decimal::infinity(Negative).isZero()); Negative 918 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 0, Negative), Decimal(-10).remainder(3)); Negative 944 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Negative), Decimal::infinity(Negative).remainder(1)); Negative 947 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Negative), Decimal::infinity(Positive).remainder(-1)); Negative 948 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Positive), Decimal::infinity(Negative).remainder(-1)); Negative 952 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Negative), Decimal::infinity(Negative).remainder(3)); Negative 955 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Negative), Decimal::infinity(Positive).remainder(-1)); Negative 956 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Positive), Decimal::infinity(Negative).remainder(-1)); Negative 960 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), Decimal(1).remainder(Decimal::infinity(Negative))); Negative 983 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-2), encode(190002, -5, Negative).round()); Negative 984 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-2), encode(150002, -5, Negative).round()); Negative 985 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-2), encode(150000, -5, Negative).round()); Negative 986 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-12), encode(12492, -3, Negative).round()); Negative 987 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(-13), encode(12502, -3, Negative).round()); Negative 993 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Negative), Decimal::infinity(Negative).round()); Negative 1001 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(3, 0, Negative), Decimal(-1) - Decimal(2)); Negative 1005 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(UINT64_C(1000000000000000), 35, Negative), Decimal(1) - encode(1, 50, Positive)); Negative 1017 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(UINT64_C(10000000000000000), -16, Negative), encode(1, -1022, Positive) - encode(1, 0, Positive)); Negative 1024 Source/platform/DecimalTest.cpp const Decimal MinusInfinity(Decimal::infinity(Negative)); Negative 1051 Source/platform/DecimalTest.cpp EXPECT_EQ(-0.0, encode(0, 0, Negative).toDouble()); Negative 1054 Source/platform/DecimalTest.cpp EXPECT_EQ(-1.0, encode(1, 0, Negative).toDouble()); Negative 1057 Source/platform/DecimalTest.cpp EXPECT_EQ(-0.1, encode(1, -1, Negative).toDouble()); Negative 1059 Source/platform/DecimalTest.cpp EXPECT_EQ(-0.3, encode(3, -1, Negative).toDouble()); Negative 1061 Source/platform/DecimalTest.cpp EXPECT_EQ(-0.6, encode(6, -1, Negative).toDouble()); Negative 1063 Source/platform/DecimalTest.cpp EXPECT_EQ(-0.7, encode(7, -1, Negative).toDouble()); Negative 1080 Source/platform/DecimalTest.cpp EXPECT_TRUE(std::isinf(Decimal::infinity(Decimal::Negative).toDouble())); Negative 1087 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_STREQ("-0", Decimal::zero(Negative)); Negative 1093 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_STREQ("-0.5", encode(5, -1, Negative)); Negative 1095 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_STREQ("-12.345", encode(12345, -3, Negative)); Negative 1097 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_STREQ("-0.12345", encode(12345, -5, Negative)); Negative 1099 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_STREQ("-50", encode(50, 0, Negative)); Negative 1101 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_STREQ("-5e+1", encode(5, 1, Negative)); Negative 1103 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_STREQ("-5.678e+103", encode(5678, 100, Negative)); Negative 1105 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_STREQ("-5.678e-97", encode(5678, -100, Negative)); Negative 1121 Source/platform/DecimalTest.cpp EXPECT_DECIMAL_STREQ("-Infinity", Decimal::infinity(Negative));