Searched defs:lookup (Results 1 - 25 of 93) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/sun/reflect/generics/scope/
H A DScope.java32 TypeVariable<?> lookup(String name); method in interface:Scope
H A DDummyScope.java60 public TypeVariable<?> lookup(String name) {return null;} method in class:DummyScope
H A DAbstractScope.java85 public TypeVariable<?> lookup(String name) { method in class:AbstractScope
90 return getEnclosingScope().lookup(name);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DSymbolLookup.java40 public Address lookup(String objectName, String symbol); method in interface:SymbolLookup
46 lookup of static fields with type "oop" already works, since the
47 lookup routine returns the address of the oop (i.e., an
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacterName.java39 private static int[][] lookup; field in class:CharacterName
55 lookup = new int[(Character.MAX_CODE_POINT + 1) >> 8][];
76 if (lookup[hi] == null) {
77 lookup[hi] = new int[0x100];
79 lookup[hi][cp&0xff] = (nameOff << 8) | len;
101 if (lookup[cp>>8] == null ||
102 (off = lookup[cp>>8][cp&0xff]) == 0)
/openjdk7/jdk/src/share/classes/java/util/
H A DListResourceBundle.java122 // lazily load the lookup hashtable.
123 if (lookup == null) {
129 return lookup.get(key); // this class ignores locales
141 // lazily load the lookup hashtable.
142 if (lookup == null) {
147 return new ResourceBundleEnumeration(lookup.keySet(),
161 if (lookup == null) {
164 return lookup.keySet();
182 * We lazily load the lookup hashtable. This function does the
186 if (lookup !
203 private Map<String,Object> lookup = null; field in class:ListResourceBundle
[all...]
H A DPropertyResourceBundle.java131 lookup = new HashMap(properties);
149 lookup = new HashMap(properties);
157 return lookup.get(key);
170 return new ResourceBundleEnumeration(lookup.keySet(),
184 return lookup.keySet();
189 private Map<String,Object> lookup; field in class:PropertyResourceBundle
/openjdk7/jdk/test/java/lang/invoke/remote/
H A DRemoteExample.java36 public static Lookup lookup() { return MethodHandles.lookup(); } method in class:RemoteExample
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DLCount.java50 static LCount lookup(String evtName) method in class:LCount
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DRMIHelper.java91 public static Remote lookup(String debugServerID) throws DebuggerException { method in class:RMIHelper
113 return Naming.lookup(nameBuf.toString());
/openjdk7/jdk/src/share/classes/java/rmi/registry/
H A DRegistry.java39 * the <code>lookup</code> and <code>list</code> methods are used to
103 public Remote lookup(String name) method in interface:Registry
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeDataInvocationHandler.java139 MXBeanLookup lookup) {
143 this.lookup = lookup;
249 private final MXBeanLookup lookup; field in class:CompositeDataInvocationHandler
138 CompositeDataInvocationHandler(CompositeData compositeData, MXBeanLookup lookup) argument
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DExportAction.java49 private final Lookup lookup; field in class:ExportAction
55 lookup = Utilities.actionsGlobalContext();
56 result = lookup.lookup(new Lookup.Template<ExportCookie>(ExportCookie.class));
93 ExportCookie cookie = Utilities.actionsGlobalContext().lookup(ExportCookie.class);
H A DNextDiagramAction.java48 public NextDiagramAction(Lookup lookup) { argument
H A DPrevDiagramAction.java48 public PrevDiagramAction(Lookup lookup) { argument
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DSymbolTable.java43 * An interface that defines both lookup protocol and parsing of
50 * "$start=alpha"), then the call lookup("start") will return the
81 * @param s the symbolic name to lookup
87 char[] lookup(String s); method in interface:SymbolTable
/openjdk7/jdk/src/share/classes/sun/util/resources/
H A DOpenListResourceBundle.java75 return lookup.get(key); // this class ignores locales
93 return lookup.keySet();
109 * Load lookup tables if they haven't been loaded already.
112 if (lookup == null) {
118 * We lazily load the lookup hashtable. This function does the
122 if (lookup != null)
136 lookup = temp;
147 private Map lookup = null; field in class:OpenListResourceBundle
/openjdk7/jdk/test/java/rmi/registry/interfaceHash/
H A DReferenceRegistryStub.java31 new java.rmi.server.Operation("java.rmi.Remote lookup(java.lang.String)"),
102 // implementation of lookup(String)
103 public java.rmi.Remote lookup(java.lang.String $param_String_1) method in class:ReferenceRegistryStub
/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DSingleEntryRegistry.java68 public Remote lookup(String name) throws NotBoundException { method in class:SingleEntryRegistry
/openjdk7/jdk/src/share/classes/java/rmi/
H A DNaming.java58 * local host, callers on a remote (or local) host can lookup the remote
91 public static Remote lookup(String name) method in class:Naming
101 return registry.lookup(parsed.name);
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMXBeanLookup.java74 * interface. We could have a lookup table that reverses
95 MXBeanLookup lookup = (weakLookup == null) ? null : weakLookup.get();
96 if (lookup == null) {
97 lookup = new MXBeanLookup(mbsc);
98 mbscToLookup.put(mbsc, new WeakReference<MXBeanLookup>(lookup));
100 return lookup;
173 static void setLookup(MXBeanLookup lookup) { argument
174 currentLookup.set(lookup);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DCheckNode.java41 public CheckNode(Children c, Lookup lookup) { argument
42 super(c, lookup);
/openjdk7/hotspot/src/share/vm/utilities/
H A DelfSymbolTable.cpp71 bool ElfSymbolTable::lookup(address addr, int* stringtableIndex, int* posIndex, int* offset) { function in class:ElfSymbolTable
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsUserPrincipals.java114 // lookup account; if not available then use the SID as the name
135 static UserPrincipal lookup(String name) throws IOException { method in class:WindowsUserPrincipals
158 throw new AssertionError("SID change during lookup");
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DFastCharsetProvider.java97 private Charset lookup(String charsetName) { method in class:FastCharsetProvider
136 return lookup(canonicalize(charsetName));
152 return lookup(csn);

Completed in 128 milliseconds

1234