Searched defs:f2 (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DFileSystem.java190 public abstract boolean rename(File f1, File f2); argument
226 public abstract int compare(File f1, File f2); argument
H A DUnixFileSystem.java313 public boolean rename(File f1, File f2) { argument
322 return rename0(f1, f2);
325 private native boolean rename0(File f1, File f2); argument
367 public int compare(File f1, File f2) { argument
368 return f1.getPath().compareTo(f2.getPath());
/libcore/ojluni/src/main/java/java/lang/
H A DFloat.java682 * {@code Float}, {@code f1} and {@code f2}, the value
683 * of {@code f1.equals(f2)} is {@code true} if and only if
686 * f1.floatValue() == f2.floatValue()
691 * <li>If {@code f1} and {@code f2} both represent
696 * {@code f2} represents {@code -0.0f}, or vice
895 * new Float(f1).compareTo(new Float(f2))
899 * @param f2 the second {@code float} to compare.
901 * numerically equal to {@code f2}; a value less than
903 * {@code f2}; and a value greater than {@code 0}
905 * {@code f2}
908 compare(float f1, float f2) argument
[all...]
H A DMath.java339 * <code>f1&nbsp;-&nbsp;f2</code>&nbsp;&times;&nbsp;<i>n</i>,
341 * mathematical value of the quotient {@code f1/f2}, and if two
342 * mathematical integers are equally close to {@code f1/f2},
353 * @param f2 the divisor.
355 * {@code f2}.
357 public static native double IEEEremainder(double f1, double f2); argument
H A DStrictMath.java282 * <code>f1&nbsp;-&nbsp;f2</code>&nbsp;&times;&nbsp;<i>n</i>,
284 * mathematical value of the quotient {@code f1/f2}, and if two
285 * mathematical integers are equally close to {@code f1/f2},
296 * @param f2 the divisor.
298 * {@code f2}.
300 public static native double IEEEremainder(double f1, double f2); argument

Completed in 113 milliseconds