Searched refs:resolve (Results 26 - 50 of 253) sorted by relevance

1234567891011

/openjdk7/jdk/test/java/nio/file/Files/walkFileTree/
H A DCreateFileTree.java51 Path subdir = Files.createDirectory(dir.resolve(name));
63 Files.createFile(dirs.get(x).resolve(name));
75 Path link = dirs.get(x).resolve(name);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicLocalSym.java44 public void resolve(BasicCDebugInfoDataBase db, ResolveListener listener) { method in class:BasicLocalSym
H A DBasicSym.java52 public abstract void resolve(BasicCDebugInfoDataBase db, ResolveListener listener); method in class:BasicSym
H A DLazyBlockSym.java49 public void resolve(BasicCDebugInfoDataBase db, ResolveListener listener) {} method in class:LazyBlockSym
H A DBasicBlockSym.java72 public void resolve(BasicCDebugInfoDataBase db, ResolveListener listener) { method in class:BasicBlockSym
76 ((BasicLocalSym) iter.next()).resolve(db, listener);
H A DBasicFunctionSym.java46 public void resolve(BasicCDebugInfoDataBase db, ResolveListener listener) { method in class:BasicFunctionSym
47 super.resolve(db, listener);
H A DBasicGlobalSym.java48 public void resolve(BasicCDebugInfoDataBase db, ResolveListener listener) { method in class:BasicGlobalSym
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DAccessWatchpointSpec.java50 void resolve(ReferenceType refType) throws InvalidTypeException, method in class:AccessWatchpointSpec
H A DModificationWatchpointSpec.java50 void resolve(ReferenceType refType) throws InvalidTypeException, method in class:ModificationWatchpointSpec
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/framework/
H A DExternalEntityReference.java58 public GloballyKnown resolve() { method in class:ExternalEntityReference
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/
H A DIDResolver.java105 * This association is supposed to be used later to resolve
159 public abstract Callable<?> resolve( String id, Class targetType ) throws SAXException; method in class:IDResolver
/openjdk7/jdk/test/java/net/URL/
H A DRelativePath.java39 String s1 = uri.resolve(uri2).toString();
44 throw new RuntimeException("URI.resolve didn't return expected result [" + s1 + " versus " + expected + "]");
/openjdk7/jdk/test/java/nio/file/
H A DTestUtil.java96 dir = dir.resolve(name).resolve(".");
106 Path link = dir.resolve("testlink");
107 Path target = dir.resolve("testtarget");
/openjdk7/hotspot/test/runtime/6626217/
H A DLoader2.java35 protected synchronized Class loadClass(String name, boolean resolve) throws ClassNotFoundException { argument
48 if (resolve) { print("Resolving class "+name); resolveClass(c); }
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DDirectoryLoader.java64 * Convenience version of loadClass which sets 'resolve' == true.
75 public synchronized Class loadClass(String className, boolean resolve) argument
112 if (resolve) resolveClass(result);
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DPath.java53 * defines the {@link #resolve(Path) resolve} and {@link #resolveSibling(Path)
352 * the path to resolve against this path
358 Path resolve(Path other); method in interface:Path
363 * #resolve(Path) resolve} method. For example, suppose that the name
369 * the path string to resolve against this path
378 Path resolve(String other); method in interface:Path
393 * the path to resolve against this path's parent
397 * @see #resolve(Pat
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DRoot.java161 void resolve(Snapshot ss) { method in class:Root
166 stackTrace.resolve(ss);
H A DJavaStatic.java54 public void resolve(JavaClass clazz, Snapshot snapshot) { method in class:JavaStatic
H A DStackFrame.java70 public void resolve(Snapshot snapshot) { method in class:StackFrame
/openjdk7/jdk/test/java/nio/file/Files/
H A DCopyAndMove.java303 entry = target.resolve("foo");
399 entry = target.resolve("foo");
414 createFile(source.resolve("foo"));
417 delete(target.resolve("foo"));
425 createFile(source.resolve("foo"));
432 delete(source.resolve("foo"));
440 createFile(source.resolve("foo"));
443 delete(target.resolve("foo"));
453 source = dir1.resolve("link");
465 source = dir1.resolve("lin
[all...]
H A DSBC.java73 Path file = dir.resolve("foo");
87 Path link = Files.createSymbolicLink(dir.resolve("link"), file);
124 Path link = dir.resolve("link");
125 Path target = dir.resolve("thisDoesNotExist");
163 Path file = dir.resolve("foo");
192 Path file = dir.resolve("foo");
228 Path file = Files.createFile(dir.resolve("foo"));
231 Path link = dir.resolve("link");
251 Path file = dir.resolve("foo");
284 Path file = Files.createFile(dir.resolve("fo
[all...]
/openjdk7/jdk/test/java/lang/ClassLoader/defineClass/
H A DDefineClassByteBuffer.java125 protected Class<?> loadClass(String name, boolean resolve) argument
130 c = super.loadClass(name, resolve);
134 if (resolve) {
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/resolver/
H A DLocalResolverImpl.java34 public synchronized org.omg.CORBA.Object resolve( String name ) method in class:LocalResolverImpl
H A DORBDefaultInitRefResolverImpl.java44 public org.omg.CORBA.Object resolve( String ident ) method in class:ORBDefaultInitRefResolverImpl
55 // and resolve it using resolveCorbaloc method
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DDefaultIDResolver.java59 public Callable resolve(final String id, Class targetType) { method in class:DefaultIDResolver

Completed in 44 milliseconds

1234567891011