Lines Matching refs:product
139 Double product = 1.0; in _multiply() local
142 product *= value; in _multiply()
145 return product; in _multiply()
159 Double product = 1.0; in test() local
160 if (u != null) product *= u; in test()
161 if (v != null) product *= v; in test()
162 if (w != null) product *= w; in test()
163 if (x != null) product *= x; in test()
164 if (y != null) product *= y; in test()
165 if (z != null) product *= z; in test()
166 assertEquals(product, multiply(u, v, w, x, y, z)); in test()
167 System.out.println(product); in test()