Searched refs:f2 (Results 76 - 100 of 110) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java795 final File f2 = fsv.createFileObject(f.getParentFile(), newFileName);
796 if (f2.exists()) {
800 if (FilePane.this.getModel().renameFile(f, f2)) {
801 if (fsv.isParent(chooser.getCurrentDirectory(), f2)) {
808 chooser.setSelectedFiles(new File[]{f2});
810 chooser.setSelectedFile(f2);
973 public int compare(File f1, File f2) { argument
974 if (f1 != null && f2 != null) {
976 boolean traversable2 = getFileChooser().isTraversable(f2);
988 getDetailsTableModel().getFileColumnValue(f2, colum
[all...]
/openjdk7/langtools/test/tools/apt/mirror/type/
H A DInterfaceTyp.java58 private I1 f2; field in class:InterfaceTyp
H A DWildcardTyp.java62 private G<? super Number> f2; // contravariant field in class:WildcardTyp
H A DClassTyp.java71 private C1 f2; field in class:ClassTyp
/openjdk7/jdk/src/share/classes/java/lang/
H A DMath.java363 * <code>f1&nbsp;-&nbsp;f2</code>&nbsp;&times;&nbsp;<i>n</i>,
365 * mathematical value of the quotient {@code f1/f2}, and if two
366 * mathematical integers are equally close to {@code f1/f2},
377 * @param f2 the divisor.
379 * {@code f2}.
381 public static double IEEEremainder(double f1, double f2) { argument
382 return StrictMath.IEEEremainder(f1, f2); // delegate to StrictMath
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
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest13.java180 static void compare (File f1, File f2) throws IOException { argument
182 InputStream i2 = new BufferedInputStream (new FileInputStream(f2));
H A DTest9.java193 static void compare (File f1, File f2) throws IOException { argument
195 InputStream i2 = new BufferedInputStream (new FileInputStream(f2));
H A DTest9a.java186 static void compare (File f1, File f2) throws IOException { argument
188 InputStream i2 = new BufferedInputStream (new FileInputStream(f2));
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DImports.java198 Identifier f2 = Identifier.lookup(nm.getQualifier(),
200 if (!f1.equals(f2)) {
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DSynchronizedStatement.java127 LocalMember f2 = new LocalMember(where, clazz, 0, Type.tInt, null);
129 Integer num2 = new Integer(ctx.declare(env, f2));
H A DExpression.java515 MemberDefinition f2 =
517 asm.add(where, opc_invokestatic, f2);
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DScanDirConfig.java425 final File f2 = new File(defaultFile);
426 if (f.equals(f2)) return DEFAULT;
/openjdk7/hotspot/src/share/vm/opto/
H A Ddivnode.cpp1200 float f2 = t2->getf(); local
1202 jint x2 = jint_cast(f2);
1206 if (g_isnan(f2)) return t2;
1209 if (!g_isfinite(f1) || !g_isfinite(f2) || x2 == 0 || x2 == min_jint)
1214 jint xr = jint_cast(fmod(f1, f2));
1244 double f2 = t2->getd(); local
1246 jlong x2 = jlong_cast(f2);
1250 if (g_isnan(f2)) return t2;
1253 if (!g_isfinite(f1) || !g_isfinite(f2) || x2 == 0 || x2 == min_jlong)
1258 jlong xr = jlong_cast(fmod(f1, f2));
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DFigureWidget.java308 for (Figure f2 : set) {
309 if (f2 == f) {
314 addFigureToMenu(subMenu, f2, successor, depth - 1);
/openjdk7/jdk/src/share/demo/applets/WireFrame/
H A DThreeD.java434 float f2 = getSize().height / xw;
435 xfac = 0.7f * (f1 < f2 ? f1 : f2) * scalefudge;
/openjdk7/corba/make/common/shared/
H A DPlatform.gmk231 MB_OF_MEMORY := $(shell free -m | fgrep Mem: | sed -e 's@\ \ *@ @g' | cut -d' ' -f2)
432 sed -e 's@\ \ *@ @g' | cut -d' ' -f2 ; \
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DUtil.java369 public static float absDelta (float f1, float f2) argument
371 double delta = f1 - f2;
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceClass.java435 for (MemberDefinition f2 = getFirstMatch(f.getName());
436 f2 != null; f2 = f2.getNextMatch()) {
437 if (f.isVariable() && f2.isVariable()) {
438 env.error(f.getWhere(), "var.multidef", f, f2);
440 } else if (f.isInnerClass() && f2.isInnerClass() &&
442 !f2.getInnerClass().isLocal()) {
1276 for (MemberDefinition f2 = f; (f2
[all...]
/openjdk7/jdk/src/share/demo/applets/MoleculeViewer/
H A DXYZApp.java366 float f2 = getSize().height / xw;
367 xfac = 0.7f * (f1 < f2 ? f1 : f2) * scalefudge;
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DAlphaMath.h77 * a*f1 + b*f2 a*f1 + b*f2
81 #define AddNormalizedProducts16(a, f1, b, f2) \
82 ((((a) * (f1)) + ((b) * (f2))) / 65535)
/openjdk7/jdk/test/com/sun/jdi/
H A DAccessSpecifierTest.java74 float f1[]={f0}, f2[][]={f1}; field in class:AccessSpecifierTarg
/openjdk7/jdk/test/java/math/BigInteger/
H A DBigIntegerTest.java517 BigInteger f2, f3;
522 f2 = k.multiply(TWELVE).add(ONE);
523 if (f2.isProbablePrime(100)) {
526 c1 = f1.multiply(f2).multiply(f3);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java117 public int compare(File f1, File f2) {
118 return f1.getName().compareTo(f2.getName());
122 public int compare(File f1, File f2) {
123 return -f1.getName().compareTo(f2.getName());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java836 Flag f2 = (Flag) o2;
837 return f1.getName().compareTo(f2.getName());

Completed in 116 milliseconds

12345