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

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltMath.java247 * @param num2 The Y axis value
250 public static double atan2(double num1, double num2) argument
252 return Math.atan2(num1, num2);
292 * @param num2 The power
295 public static double power(double num1, double num2) argument
297 return Math.pow(num1, num2);
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DFinallyStatement.java263 Integer num1 = null, num2 = null;
291 num2 = new Integer(ctx.declare(env, f2));
333 asm.add(where, opc_astore, num2); // save the return address
335 asm.add(where, opc_ret, num2); // return
H A DSynchronizedStatement.java129 Integer num2 = new Integer(ctx.declare(env, f2));
166 asm.add(where, opc_astore, num2);
169 asm.add(where, opc_ret, num2);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXNodeSet.java554 double num2 = obj2.num();
556 result = comparator.compareNumbers(num1, num2);
569 double num2 = obj2.num();
576 if (comparator.compareNumbers(num1, num2))

Completed in 236 milliseconds