Searched refs:f2 (Results 1 - 25 of 110) sorted by relevance

12345

/openjdk7/langtools/test/tools/javac/
H A DInconsistentStack.java37 f2();
43 static void f2() { method in class:InconsistentStack
H A DT4906100.java15 void f2(int a, int b) { method in class:T4906100
/openjdk7/jdk/test/java/io/File/
H A DCompareTo.java36 File f2 = new File("B");
37 if (!(f1.compareTo(f2) < 0))
43 File f2 = new File("B");
44 if (!(f1.compareTo(f2) > 0))
H A DHashCodeEquals.java36 File f2 = new File(fn2);
37 if (!f1.equals(f2))
40 int h2 = f2.hashCode();
H A DUnicode.java74 final File f2 = new File("\u0412.tst");
84 f1.renameTo(f2);
85 sanityCheck(f2);
86 if (! f2.delete()) fail("! f2.delete()");
87 if ( f2.exists()) fail(" f2.exists()");
94 f2.delete();
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A DGeneratePropertyPassword.sh86 f2="${TESTCLASSES}${FILESEP}${suffix}"
88 if [ -f "$f2" ] ; then
89 rm -f $f2 || echo WARNING: $f2 already exits - unable to remove old copy
92 echo creating $f2
93 sed -f $TMP_FILE $f > $f2
96 chown $USER $f2
98 echo Y|$CACLS $f2 \/E \/G $USER:F
100 $REVOKEALL $f2
102 $CACLS $f2
[all...]
/openjdk7/langtools/test/tools/javac/generics/diamond/neg/
H A DNeg11.java16 Foo<?> f2 = new UndeclaredName<>() {}; //this is deliberate: aim is to test erroneous path
/openjdk7/langtools/test/tools/javac/generics/inference/6302954/
H A DX.java33 <U extends X> U f2() throws Exception { return f1(); } method in class:X
/openjdk7/jdk/test/java/io/pathNames/win32/
H A Dbug6344646.java42 File f2 = new File("j\u0301");
44 if (f1.hashCode() != f2.hashCode()) {
H A DDriveRelativePath.java52 File f2 = new File(drive + "foo");
53 System.err.println(f2);
54 String c2 = f2.getCanonicalPath();
57 + f2 + "\" maps to \""
H A DRenameDelete.java57 File f2 = new File(toLocation.toString());
59 if(f1.exists() || f2.exists()) {
66 success = f1.renameTo(f2);
72 success = f2.delete();
H A DSJIS.java65 File f2 = new File(f, "\u30BD");
66 System.err.println(f2.getCanonicalPath());
67 touch(f2);
68 String cfn = f2.getCanonicalPath();
/openjdk7/langtools/test/tools/javac/generics/wildcards/pos/
H A DCapture.java37 f2(x);
41 <T> void f2(X<T> x) {} method in class:Capture
/openjdk7/jdk/test/java/lang/invoke/7157574/
H A DTest7157574.java53 static abstract class Super implements Intf { public abstract void m2(); public int f2; } field in class:Test7157574.Super
60 MethodHandle f2 = lookup().findGetter(Sub.class, "f2", int.class);
61 System.out.println(f2);
62 MethodHandle f2s = lookup().findSetter(Sub.class, "f2", int.class);
70 assertEquals(Sub.class, f2.type().parameterType(0));
76 public void m1() { this.f2 = -1; }
77 public void m2() { this.f2 = -2; }
85 testConcrete(new C(), m1, m2, f2, f2s, chc, ihc);
89 MethodHandle f2, MethodHandl
87 testConcrete(Sub s, MethodHandle m1, MethodHandle m2, MethodHandle f2, MethodHandle f2s, MethodHandle chc, MethodHandle ihc ) argument
[all...]
/openjdk7/jdk/test/java/io/Serializable/finalFields/
H A DFinalFields.java52 Foo f1, f2, f1copy, f2copy;
57 f2 = new Foo(2);
60 oout.writeObject(f2);
68 if (! (f1.equals(f1copy) && f2.equals(f2copy)))
/openjdk7/jdk/test/java/awt/Multiscreen/LocationRelativeToTest/
H A DLocationRelativeToTest.java73 Frame f2 = new Frame("F2", gc);
74 f2.setBounds(gcBounds.x + 100, gcBounds.y + 100,
78 f.setLocationRelativeTo(f2);
84 f2.setVisible(true);
86 Point f2Loc = f2.getLocationOnScreen();
87 f.setLocationRelativeTo(f2);
89 checkLocation(f, new Point(f2Loc.x + f2.getWidth() / 2,
90 f2Loc.y + f2.getHeight() / 2));
/openjdk7/jdk/test/javax/sound/sampled/AudioFormat/
H A DMatches_NOT_SPECIFIED.java44 static AudioFormat f2; field in class:Matches_NOT_SPECIFIED
49 f2 = new AudioFormat(Encoding.PCM_SIGNED,
58 f2 = new AudioFormat(Encoding.PCM_SIGNED,
80 out(" - " + f2.toString());
81 if (f1.matches(f2)) {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DPredecessorSelector.java46 for (Figure f2 : f.getSuccessors()) {
47 if (inner.contains(f2)) {
H A DSuccessorSelector.java46 for (Figure f2 : f.getPredecessors()) {
47 if (inner.contains(f2)) {
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djava_lang_reflect_Field.java35 public int f2; field in class:java_lang_reflect_Field
51 return java_lang_reflect_Field.class.getField("f2");
/openjdk7/jdk/test/java/lang/Class/
H A DCast.java37 Foo f2 = Foo.class.cast(null);
/openjdk7/langtools/test/tools/javac/generics/inference/5034571/
H A DT5034571.java48 void f2(G1<? extends I2> g1) { method in class:T5034571.Main
/openjdk7/langtools/test/tools/javac/generics/inference/6943278/
H A DT6943278.java11 T6943278<?> f2 = m(""); field in class:T6943278
/openjdk7/langtools/test/tools/javadoc/generics/wildcards/pkg1/
H A DA.java28 public A<? extends Number> f2; field in class:A
/openjdk7/jdk/test/com/sun/jdi/connect/spi/
H A DJdiLoadedByCustomLoader.java45 File f2 = (new File(home, tools)).getCanonicalFile();
48 URL[] urls = { f1.toURL(), f2.toURL() };

Completed in 140 milliseconds

12345