Searched defs:resolve (Results 26 - 50 of 121) sorted by relevance

12345

/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/policy/jaxws/
H A DDefaultPolicyResolver.java51 public PolicyMap resolve(ServerContext context) { method in class:DefaultPolicyResolver
58 public PolicyMap resolve(ClientContext context) { method in class:DefaultPolicyResolver
/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/jdk/test/java/beans/XMLEncoder/6329581/
H A DTest6329581.java54 protected Class loadClass(String name, boolean resolve) throws ClassNotFoundException { argument
67 if (resolve) {
/openjdk7/jdk/test/java/lang/ClassLoader/findSystemClass/
H A DLoader.java69 public Class loadClass(String name, boolean resolve) argument
83 if (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/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/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DSALauncherLoader.java77 public synchronized Class loadClass(String name, boolean resolve) argument
102 return (super.loadClass(name, resolve));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
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
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 DBasicSym.java52 public abstract void resolve(BasicCDebugInfoDataBase db, ResolveListener listener); method in class:BasicSym
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DLineBreakpointSpec.java53 void resolve(ReferenceType refType) throws InvalidTypeException, method in class:LineBreakpointSpec
H A DExceptionSpec.java81 void resolve(ReferenceType refType) { method in class:ExceptionSpec
/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/jdk/make/tools/src/build/tools/javazic/
H A DZone.java162 void resolve(Zoneinfo zi) { method in class:Zone
165 rec.resolve(zi);
/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/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/v2/runtime/unmarshaller/
H A DDefaultIDResolver.java59 public Callable resolve(final String id, Class targetType) { method in class:DefaultIDResolver
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest5102804.java96 protected Class loadClass(String name, boolean resolve) throws ClassNotFoundException { argument
109 if (resolve) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DUnresolvedRef.java56 private VariableRefBase resolve(Parser parser, SymbolTable stable) { method in class:UnresolvedRef
87 if ((_ref = resolve(getParser(), stable)) != null) {
/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/jaxp/src/com/sun/org/apache/xml/internal/resolver/tools/
H A DCatalogResolver.java138 catalogManager.debug.message(1, "Malformed URL exception trying to resolve",
142 catalogManager.debug.message(1, "I/O exception trying to resolve", publicId);
152 catalogManager.debug.message(1, "Malformed URL exception trying to resolve",
155 catalogManager.debug.message(1, "I/O exception trying to resolve", publicId);
230 public Source resolve(String href, String base) method in class:CatalogResolver
266 return resolve(href, absBase);

Completed in 78 milliseconds

12345