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

/libcore/ojluni/src/main/java/java/lang/invoke/
H A DMethodHandleStatics.java149 /*non-public*/ static RuntimeException newIllegalArgumentException(String message, Object obj, Object obj2) { argument
150 return new IllegalArgumentException(message(message, obj, obj2));
165 private static String message(String message, Object obj, Object obj2) { argument
166 if (obj != null || obj2 != null) message = message + ": " + obj + ", " + obj2;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
H A DObjectTest.java26 Object obj2 = new Object(); field in class:ObjectTest
49 assertTrue("Different objects should not be equal", !obj1.equals(obj2));
82 obj2.hashCode() == obj2.hashCode());
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DUnixFileSystemProvider.java313 public boolean isSameFile(Path obj1, Path obj2) throws IOException { argument
315 if (file1.equals(obj2))
317 if (obj2 == null)
319 if (!(obj2 instanceof UnixPath))
321 UnixPath file2 = (UnixPath)obj2;
440 public void createSymbolicLink(Path obj1, Path obj2, FileAttribute<?>... attrs) argument
444 UnixPath target = UnixPath.toUnixPath(obj2);
469 public void createLink(Path obj1, Path obj2) throws IOException { argument
471 UnixPath existing = UnixPath.toUnixPath(obj2);

Completed in 96 milliseconds