Searched refs:resolve (Results 1 - 25 of 253) sorted by relevance

1234567891011

/openjdk7/jdk/test/java/lang/instrument/appendToClassLoaderSearch/
H A DCircularityErrorTest.java45 static void resolve() { method in class:CircularityErrorTest
56 resolve();
58 resolve();
/openjdk7/jaxp/src/javax/xml/transform/
H A DURIResolver.java43 * and the processor should try to resolve the URI itself.
46 * resolve the URI.
48 public Source resolve(String href, String base) method in interface:URIResolver
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/resolver/
H A DResolver.java36 org.omg.CORBA.Object resolve( String name ) ; method in interface:Resolver
40 * which resolve does not return null. Some resolvers may not support
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/util/
H A DOrderClassLoaders.java37 protected Class<?> loadClass(String name, boolean resolve) throws ClassNotFoundException { argument
40 return super.loadClass(name, resolve);
/openjdk7/jdk/src/share/instrument/
H A DFileSystemSupport.h67 char* resolve(const char* parent, const char* child);
/openjdk7/jdk/test/java/nio/file/Path/
H A DPathOps.java164 PathOps resolve(String other, String expected) { method in class:PathOps
165 out.format("test resolve %s\n", other);
167 check(path.resolve(other), expected);
421 // resolve
423 .resolve("foo", "C:\\foo")
424 .resolve("D:\\bar", "D:\\bar")
425 .resolve("\\\\server\\share\\bar", "\\\\server\\share\\bar")
426 .resolve("C:foo", "C:\\foo")
427 .resolve("D:foo", "D:foo")
428 .resolve("", "
[all...]
H A DMisc.java96 final Path file = Files.createFile(dir.resolve("foo"));
97 final Path link = dir.resolve("link");
107 Path doesNotExist = dir.resolve("DoesNotExist");
120 * Test: toRealPath() should resolve links
129 * Test: toRealPath(NOFOLLOW_LINKS) should not resolve links
149 assertTrue(dir.resolve(".").toRealPath().equals(dir.toRealPath()));
150 assertTrue(dir.resolve(".").toRealPath(NOFOLLOW_LINKS).equals(dir.toRealPath(NOFOLLOW_LINKS)));
156 Path subdir = Files.createDirectory(dir.resolve("subdir"));
157 assertTrue(subdir.resolve("..").toRealPath().equals(dir.toRealPath()));
158 assertTrue(subdir.resolve("
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/resolver/
H A DCompositeResolverImpl.java43 public org.omg.CORBA.Object resolve( String name ) method in class:CompositeResolverImpl
45 org.omg.CORBA.Object result = first.resolve( name ) ;
47 result = second.resolve( name ) ;
H A DSplitLocalResolverImpl.java50 public org.omg.CORBA.Object resolve( String name ) method in class:SplitLocalResolverImpl
52 return resolver.resolve( name ) ;
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DStackTrace.java68 public void resolve(Snapshot snapshot) { method in class:StackTrace
70 frames[i].resolve(snapshot);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/wsdl/parser/
H A DMetaDataResolver.java49 public abstract @Nullable ServiceDescriptor resolve(@NotNull URI location); method in class:MetaDataResolver
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/
H A DSDDocumentResolver.java41 * @return document for the systemId, null if it cannot resolve.
43 @Nullable SDDocument resolve(String systemId); method in interface:SDDocumentResolver
/openjdk7/jdk/test/java/nio/file/DirectoryStream/
H A DSecureDS.java66 Path dir1 = createDirectory(dir.resolve("dir1"));
67 Path dir2 = dir.resolve("dir2");
71 createFile(dir1.resolve(fileEntry));
73 createDirectory(dir1.resolve(dirEntry));
77 createSymbolicLink(dir1.resolve(link1Entry), fileEntry);
81 createSymbolicLink(dir1.resolve(link2Entry), dirEntry);
177 Path dir1 = createDirectory(dir.resolve("dir1"));
178 Path dir2 = createDirectory(dir.resolve("dir2"));
182 createFile(dir1.resolve(fileEntry));
184 createDirectory(dir1.resolve(dirEntr
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/tools/
H A DMaskingClassLoader.java61 protected synchronized Class<?> loadClass(String name, boolean resolve) throws ClassNotFoundException { argument
67 return super.loadClass(name, resolve);
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DOptionOutputFormatter.java46 resolve();
49 private void resolve() throws MonitorException { method in class:OptionOutputFormatter
/openjdk7/jdk/test/java/net/URI/
H A DRelativeEncoding.java26 * @summary URI.resolve escapes characters in parameter URI
37 URI three = two.resolve(one);
39 throw new RuntimeException("Bad encoding on URI.resolve");
/openjdk7/jdk/test/java/lang/ClassLoader/deadlock/
H A DDelegatingLoader.java74 public Class loadClass(String className, boolean resolve) argument
84 return delLoader.loadClass(className, resolve);
90 return super.loadClass(className, resolve);
/openjdk7/jdk/test/java/nio/file/Files/
H A DDeleteOnClose.java46 file = dir.resolve("foo");
48 Path link = dir.resolve("link");
68 if (Files.exists(dir.resolve(file)))
H A DMisc.java60 Path subdir = tmpdir.resolve("a");
65 subdir = subdir.resolve("b/c/d");
70 Path file = createFile(tmpdir.resolve("x"));
76 createDirectories(file.resolve("y"));
87 Path file = tmpdir.resolve(".foo");
109 Path thisFile = tmpdir.resolve("thisFile");
110 Path thatFile = tmpdir.resolve("thatFile");
195 Path file = createFile(tmpdir.resolve("foo"));
204 Path link = tmpdir.resolve("link");
250 Path doesNotExist = tmpdir.resolve("doesNotExis
[all...]
H A DLinks.java51 final Path link = dir.resolve("link");
82 Path mydir = dir.resolve("mydir");
83 Path myfile = mydir.resolve("myfile");
105 final Path link2 = dir.resolve("link2");
140 Path foo = dir.resolve("foo");
143 Path bar = dir.resolve("bar");
/openjdk7/jdk/test/java/security/Security/ClassLoaderDeadlock/
H A DClassLoaderDeadlock.java80 protected synchronized Class loadClass(String name, boolean resolve) throws ClassNotFoundException { argument
81 System.out.println("-loadClass(" + name + "," + resolve + ")");
87 return super.loadClass(name, resolve);
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractPath.java52 public final Path resolve(String other) { method in class:AbstractPath
53 return resolve(getFileSystem().getPath(other));
61 return (parent == null) ? other : parent.resolve(other);
/openjdk7/jdk/test/java/nio/file/WatchService/
H A DFileTreeModifier.java65 Path subdir = Files.createDirectories(top.resolve("a").resolve("b").resolve("c"));
73 Path file = Files.createFile(subdir.resolve("foo"));
109 file = Files.createFile(top.resolve("bar"));
/openjdk7/jdk/src/share/classes/com/sun/beans/
H A DTypeResolver.java40 * This is utility class to resolve types.
73 * @param inClass the base class used to resolve
74 * @param type the type to resolve
78 * @see #resolve(Type,Type)
81 return resolve(getActualType(inClass), type);
88 * @param inClass the base class used to resolve
89 * @param types the array of types to resolve
93 * @see #resolve(Type,Type[])
96 return resolve(getActualType(inClass), types);
156 public static Type resolve(Typ method in class:TypeResolver
214 public static Type[] resolve(Type actual, Type[] formals) { method in class:TypeResolver
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DEventRequestSpec.java68 abstract void resolve(ReferenceType refType) throws Exception; method in class:EventRequestSpec
81 resolve(refType);
91 * See if 'refType' matches and resolve.
100 // try to resolve immediately
104 resolve(refType);

Completed in 80 milliseconds

1234567891011