Searched defs:Resolve (Results 1 - 6 of 6) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DNamingContextDataStore.java69 org.omg.CORBA.Object Resolve(NameComponent n,BindingTypeHolder bth) method in interface:NamingContextDataStore
H A DTransientNamingContext.java163 public final org.omg.CORBA.Object Resolve(NameComponent n, method in class:TransientNamingContext
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/pcosnaming/
H A DNamingContextImpl.java333 * Resolve a name in this NamingContext and return the object reference
507 * Implements all four flavors of binding. It uses Resolve() to
564 org.omg.CORBA.Object objRef = impl.Resolve( n[0], bth );
586 if (impl.Resolve(n[0],bth) != null)
634 * Resolve(). If there are no more components in the name, the
670 // Resolve first level in this context
671 obj = impl.Resolve(n[0],bth);
689 // Resolve rest of name in context
744 // Resolve first - must be resolveable
777 // Resolve firs
921 public Object Resolve(NameComponent n, BindingTypeHolder bth) method in class:NamingContextImpl
[all...]
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_common.c77 Resolve(char *indir, char *cmd) function
105 return Resolve("", program+1);
110 return Resolve(getcwd(cwdbuf, sizeof(cwdbuf)), program);
124 result = Resolve(s, program);
130 result = Resolve(dir, program);
330 * Resolve the real path to the directory containing the selected JRE.
338 * Resolve the real path to the currently running launcher.
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c894 Resolve(char *indir, char *cmd) function
923 return Resolve("", program+1);
928 return Resolve(getcwd(cwdbuf, sizeof(cwdbuf)), program);
942 result = Resolve(s, program);
948 result = Resolve(dir, program);
1703 * Resolve the real path to the directory containing the selected JRE.
1711 * Resolve the real path to the currently running launcher.
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DResolve.java34 import static com.sun.tools.javac.comp.Resolve.MethodResolutionPhase.*;
60 public class Resolve { class
61 protected static final Context.Key<Resolve> resolveKey =
62 new Context.Key<Resolve>();
80 public static Resolve instance(Context context) {
81 Resolve instance = context.get(resolveKey);
83 instance = new Resolve(context);
87 protected Resolve(Context context) { method in class:Resolve
569 /** Resolve a field identifier, throw a fatal error if not found.
1388 /** Resolve a
[all...]

Completed in 58 milliseconds