Lines Matching refs:mult

256     private static $type$ mult($type$ v, double mul) {
273 private static $type$ mult($type$ v, double mul) {
290 private static $type$ mult($type$ v, double mul) {
308 private static $type$ mult($type$ v, double mul) {
325 private static $type$ mult($type$ v, double mul) {
916 test("%.3e", "3.142e+06", mult(pi, 1000000.0));
917 test("%.3e", "-3.142e+06", mult(pi, -1000000.0));
964 test("%(.4e", "3.1416e+06", mult(pi, 1000000.0));
965 test("%(.4e", "(3.1416e+06)", mult(pi, -1000000.0));
1114 test("%.3f", "3141.593", mult(pi, 1000.0));
1115 test("%.3f", "-3141.593", mult(pi, -1000.0));
1117 test("%,.2f", "3,141.59", mult(pi, 1000.0));
1118 test(Locale.FRANCE, "%,.2f", "3\u00a0141,59", mult(pi, 1000.0));
1119 test("%,.2f", "-3,141.59", mult(pi, -1000.0));
1120 test("%(.2f", "3141.59", mult(pi, 1000.0));
1121 test("%(.2f", "(3141.59)", mult(pi, -1000.0));
1122 test("%(,.2f", "3,141.59", mult(pi, 1000.0));
1123 test("%(,.2f", "(3,141.59)", mult(pi, -1000.0));
1130 test("%.3f", "3141592.654", mult(pi, 1000000.0));
1131 test("%.3f", "-3141592.654", mult(pi, -1000000.0));
1132 test("%,.4f", "3,141,592.6536", mult(pi, 1000000.0));
1133 test(Locale.FRANCE, "%,.4f", "3\u00a0141\u00a0592,6536", mult(pi, 1000000.0));
1134 test("%,.4f", "-3,141,592.6536", mult(pi, -1000000.0));
1135 test("%(.4f", "3141592.6536", mult(pi, 1000000.0));
1136 test("%(.4f", "(3141592.6536)", mult(pi, -1000000.0));
1137 test("%(,.4f", "3,141,592.6536", mult(pi, 1000000.0));
1138 test("%(,.4f", "(3,141,592.6536)", mult(pi, -1000000.0));
1162 test("%.3g", "3.14e+08", mult(pi, 100000000.0));
1163 test("%.3g", "-3.14e+08", mult(pi, -100000000.0));
1268 test("%(.4g", "3.142e+08", mult(pi, 100000000.0));
1269 test("%(.4g", "(3.142e+08)", mult(pi, -100000000.0));
1273 test("%,.6g", "3,141.59", mult(pi, 1000.0));
1274 test("%(,.6g", "(3,141.59)", mult(pi, -1000.0));
1277 test("%,.11g", "3,141,592.6536", mult(pi, 1000000.0));
1278 test("%(,.11g", "(3,141,592.6536)", mult(pi, -1000000.0));