Lines Matching refs:sd
5 function t(n, dp, sd, zs) {
8 T.assertEqual(sd, new Decimal(n).sd(zs));
9 T.assertEqual(sd, new Decimal(n).precision(zs));
66 tx(function () {new Decimal(1).sd(null)}, "new Decimal(1).sd(null)");
67 tx(function () {new Decimal(1).sd(2)}, "new Decimal(1).sd(2)");
68 tx(function () {new Decimal(1).sd('3')}, "new Decimal(1).sd('3')");
69 tx(function () {new Decimal(1).sd({})}, "new Decimal(1).sd({})");