| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/ |
| H A D | JClassAlreadyExistsException.java | 38 private final JDefinedClass existing; field in class:JClassAlreadyExistsException 41 this.existing = _existing; 45 * Gets a reference to the existing {@link JDefinedClass}. 51 return existing;
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/ |
| H A D | DomAnnotationParserFactory.java | 87 public Object getResult(Object existing) { argument 90 if(existing instanceof Element) { 92 Element prev = (Element) existing;
|
| /openjdk7/jdk/src/share/classes/java/nio/file/spi/ |
| H A D | FileSystemProvider.java | 65 * obtain a reference to an existing file system created by the provider. Where 231 * Returns an existing {@code FileSystem} created by this provider. 253 * existing file system. In the case of the {@link FileSystems#getDefault 654 * Creates a new link (directory entry) for an existing file. This method 663 * @param existing 664 * a path to an existing file 667 * if the implementation does not support adding an existing file 679 * existing file. 681 public void createLink(Path link, Path existing) throws IOException { argument
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/ |
| H A D | annotation.java | 48 private AnnotationImpl existing; field in class:annotation 62 this.existing = _existing; 209 if(existing!=null) e=existing.getAnnotation();
|
| /openjdk7/jdk/test/java/nio/file/spi/ |
| H A D | TestProvider.java | 107 public void createLink(Path link, Path existing) throws IOException { argument
|
| /openjdk7/jdk/src/share/classes/java/nio/file/ |
| H A D | Files.java | 125 * exist, or initially truncating an existing {@link #isRegularFile 132 * // truncate and overwrite an existing file, or create the file if 136 * // append to an existing file, fail if the file does not exist 139 * // append to an existing file, create file if it doesn't initially exist 202 * <td> If this option is present then the existing file is truncated to 216 * <td> If this option is present then an existing file is opened if it 267 * // open file for writing to the end of an existing file, creating 708 // unable to find existing parent 999 * Creates a new link (directory entry) for an existing file <i>(optional 1003 * The {@code existing} paramete 1036 createLink(Path link, Path existing) argument [all...] |
| /openjdk7/jdk/test/java/nio/file/Files/ |
| H A D | PassThroughFileSystem.java | 255 public void createLink(Path link, Path existing) throws IOException { argument 256 Files.createLink(unwrap(link), unwrap(existing));
|
| /openjdk7/jdk/test/sun/security/krb5/auto/ |
| H A D | KDC.java | 210 public static KDC existing(String realm, String kdc, int port) { method in class:KDC
|
| /openjdk7/jdk/src/solaris/native/sun/nio/fs/ |
| H A D | UnixNativeDispatcher.c | 682 const char* existing = (const char*)jlong_to_ptr(existingAddress); local 685 RESTARTABLE(link(existing, newname), err);
|
| /openjdk7/jdk/src/solaris/classes/sun/nio/fs/ |
| H A D | UnixNativeDispatcher.java | 120 * link(const char* existing, const char* new) 122 static void link(UnixPath existing, UnixPath newfile) throws UnixException { argument 123 NativeBuffer existingBuffer = copyToNativeBuffer(existing);
|
| /openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/ |
| H A D | LdapCtx.java | 327 LdapCtx(LdapCtx existing, String newDN) throws NamingException { argument 328 useSsl = existing.useSsl; 329 hasLdapsScheme = existing.hasLdapsScheme; 330 useDefaultPortNumber = existing.useDefaultPortNumber; 332 hostname = existing.hostname; 333 port_number = existing.port_number; 335 if (existing.currentDN == currentDN) { 336 currentParsedDN = existing.currentParsedDN; 341 envprops = existing.envprops; 342 schemaTrees = existing [all...] |