Searched refs:EXPECT_DECIMAL_STREQ (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimalTest.cpp122 #define EXPECT_DECIMAL_STREQ(expected, decimal) EXPECT_STREQ((expected), (decimal).toString().ascii().data()) macro
888 EXPECT_DECIMAL_STREQ("10", stepDown("0", "100", "10", "19", 1));
889 EXPECT_DECIMAL_STREQ("90", stepUp("0", "99", "10", "89", 1));
890 EXPECT_DECIMAL_STREQ("1", stepUp("0", "1", "0.33333333333333333", "0", 3)); // step=1/3
891 EXPECT_DECIMAL_STREQ("0.01", stepUp("0", "0.01", "0.0033333333333333333", "0", 3)); // step=1/300
892 EXPECT_DECIMAL_STREQ("1", stepUp("0", "1", "0.003921568627450980", "0", 255)); // step=1/255
893 EXPECT_DECIMAL_STREQ("1", stepUp("0", "1", "0.1", "0", 10));
898 EXPECT_DECIMAL_STREQ("5.015", stepUp("0", "100", "0.005", "5.005", 2));
899 EXPECT_DECIMAL_STREQ("5.06", stepUp("0", "100", "0.005", "5.005", 11));
900 EXPECT_DECIMAL_STREQ("5.06
[all...]

Completed in 217 milliseconds