Searched refs:resolve (Results 76 - 100 of 253) sorted by relevance

1234567891011

/openjdk7/jdk/test/java/nio/file/attribute/DosFileAttributeView/
H A DBasic.java77 Path file = Files.createFile(dir.resolve("foo"));
85 Path link = dir.resolve("link");
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixSecureDirectoryStream.java93 UnixPath child = ds.directory().resolve(file);
148 String pathToCheck = ds.directory().resolve(file).getPathForPermissionCheck();
177 ds.directory().resolve(file).checkDelete();
242 this.ds.directory().resolve(from).checkWrite();
243 that.ds.directory().resolve(to).checkWrite();
342 ds.directory().resolve(file).checkWrite();
364 ds.directory().resolve(file).checkRead();
458 ds.directory().resolve(file).checkRead();
H A DUnixPath.java166 // resolve against default directory if required (chdir allowed or
169 return resolve(getFileSystem().defaultDirectory(), path);
374 private static byte[] resolve(byte[] base, byte[] child) { method in class:UnixPath
396 public UnixPath resolve(Path obj) { method in class:UnixPath
400 byte[] result = resolve(path, other);
404 UnixPath resolve(byte[] other) { method in class:UnixPath
405 return resolve(new UnixPath(getFileSystem(), other));
815 // The path is relative so need to resolve against default directory,
822 resolve(getFileSystem().defaultDirectory(), path));
869 result = result.resolve(elemen
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/resolver/
H A DORBInitRefResolverImpl.java50 public org.omg.CORBA.Object resolve( String ident ) method in class:ORBInitRefResolverImpl
H A DFileResolverImpl.java58 public org.omg.CORBA.Object resolve( String name ) method in class:FileResolverImpl
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DExceptionSpec.java81 void resolve(ReferenceType refType) { method in class:ExceptionSpec
H A DLineBreakpointSpec.java53 void resolve(ReferenceType refType) throws InvalidTypeException, method in class:LineBreakpointSpec
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DSearchPath.java69 public File resolve(String relativeFileName) { method in class:SearchPath
86 // found if we later do a 'resolve'.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/xml/sax/
H A DXmlBaseHandler.java101 return Uri.resolve(getBaseUri1(stack.systemId, stack.parent), baseUri);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DSingletonResolver.java49 public @NotNull T resolve(Packet request) { method in class:SingletonResolver
H A DServiceDefinitionImpl.java108 public SDDocument resolve(String systemId) { method in class:ServiceDefinitionImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DMetadataUtil.java62 SDDocument currentDoc = resolver.resolve(current);
/openjdk7/jdk/test/java/nio/channels/AsynchronousServerSocketChannel/
H A DWithSecurityManager.java48 Paths.get(testSrc).resolve(policy).toString());
/openjdk7/jdk/test/java/nio/file/WatchService/
H A DWithSecurityManager.java54 System.setProperty("java.security.policy", dir.resolve(policyFile).toString());
H A DLotsOfEvents.java65 files[i] = Files.createFile(dir.resolve("foo" + i));
139 entries[i] = new DirectoryEntry(dir.resolve("foo" + i));
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DEnvironment.java37 * It is used to load classes, resolve class names and
84 * exempt from the "exists" check in Imports#resolve().
231 public boolean resolve(long where, ClassDefinition c, Type t) { method in class:Environment
238 resolve(nm); // elicit complaints about ambiguity
272 return resolve(where, c, t.getElementType());
275 boolean ok = resolve(where, c, t.getReturnType());
278 ok &= resolve(where, c, args[i]);
288 * Like 'resolve', but is given a single type name, not a type descriptor.
303 resolve(nm); // elicit complaints about ambiguity
336 * Currently called only by 'resolve' abov
564 public Identifier resolve(Identifier nm) throws ClassNotFound { method in class:Environment
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DClassLoader.java128 protected Class loadClass(String class_name, boolean resolve) argument
168 if(resolve)
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/helpers/
H A DBootstrapResolver.java136 /** Transformer resolve API. */
137 public Source resolve(String href, String base) method in class:BootstrapResolver
170 return resolve(href, absBase);
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaObjectArray.java43 private Object clazz; // Long before resolve, the class after resolve
54 public void resolve(Snapshot snapshot) { method in class:JavaObjectArray
82 super.resolve(snapshot);
/openjdk7/hotspot/src/share/vm/runtime/
H A DjniHandles.hpp45 inline static oop resolve(jobject handle);
184 inline oop JNIHandles::resolve(jobject handle) { function in class:JNIHandles
/openjdk7/jdk/test/java/nio/file/DirectoryStream/
H A DBasic.java49 createFile(dir.resolve(foo));
132 newDirectoryStream(dir.resolve(foo));
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DINSServerRequestDispatcher.java90 IOR entry = ORBUtility.getIOR( orb.getLocalResolver().resolve( insKey ) ) ;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DAbstractReferenceFinderImpl.java81 String ref = new URI(locator.getSystemId()).resolve(new URI(relativeRef)).toString();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/outline/
H A DOutline.java124 * Short for {@code resolve(ref.getType(),aspect)}.
126 JType resolve(CTypeRef ref,Aspect aspect); method in interface:Outline
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsLinkSupport.java115 // Fallback: read target of link, resolve against parent, and repeat
144 target = parent.resolve(link);
357 WindowsPath current = path.getRoot().resolve(path.subpath(0, elem+1));
367 * If a symbolic link then we resolve it against the parent
368 * of the current name element. We then resolve any remaining
384 path = current.getParent().resolve(target);
394 path = path.resolve(remainder);

Completed in 50 milliseconds

1234567891011