Searched defs:obj1 (Results 1 - 3 of 3) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
H A DObjectTest.java24 Object obj1 = new Object(); field in class:ObjectTest
48 assertTrue("Same object should be equal", obj1.equals(obj1));
49 assertTrue("Different objects should not be equal", !obj1.equals(obj2));
80 obj1.hashCode() == obj1.hashCode());
94 synchronized (obj1) {
97 obj1.wait();// Wait for ever.
122 synchronized (obj1) {
128 obj1
[all...]
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldObjectTest.java28 Object obj1 = new Object(); field in class:OldObjectTest
147 synchronized (obj1) {
151 obj1.wait();// Wait for ever.
154 obj1.wait(5000L);
157 obj1.wait(10000L, 999999);
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DUnixFileSystemProvider.java313 public boolean isSameFile(Path obj1, Path obj2) throws IOException { argument
314 UnixPath file1 = UnixPath.toUnixPath(obj1);
440 public void createSymbolicLink(Path obj1, Path obj2, FileAttribute<?>... attrs) argument
443 UnixPath link = UnixPath.toUnixPath(obj1);
469 public void createLink(Path obj1, Path obj2) throws IOException { argument
470 UnixPath link = UnixPath.toUnixPath(obj1);
488 public Path readSymbolicLink(Path obj1) throws IOException { argument
489 UnixPath link = UnixPath.toUnixPath(obj1);

Completed in 65 milliseconds