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

/libcore/ojluni/src/main/java/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
/libcore/ojluni/src/main/java/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
/libcore/ojluni/src/lambda/java/java/lang/invoke/
H A DMethodHandleInfo.java51 public <T extends Member> T reflectAs(Class<T> expected, Lookup lookup); argument
H A DMethodHandles.java36 public static Lookup lookup() { return null; } method in class:MethodHandles
/libcore/ojluni/src/main/java/java/nio/charset/
H A DCharset.java335 // cache1/2 usage is explained in the lookup method
362 // those whose lookup or instantiation causes a security exception to be
494 private static Charset lookup(String charsetName) { method in class:Charset
545 return (lookup(charsetName) != null);
568 Charset cs = lookup(charsetName);
617 * forName} method, which instead employs an efficient incremental lookup
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DMulticastSocketTest.java38 private static InetAddress lookup(String s) { method in class:MulticastSocketTest
50 private static InetAddress GOOD_IPv4 = lookup("224.0.0.3");
51 private static InetAddress BAD_IPv4 = lookup("224.0.0.4");
52 private static InetAddress GOOD_IPv6 = lookup("ff05::7:7");
53 private static InetAddress BAD_IPv6 = lookup("ff05::7:8");
/libcore/ojluni/src/main/java/java/io/
H A DObjectOutputStream.java1040 } else if ((handle = handles.lookup(str)) != -1) {
1126 if ((obj = subs.lookup(obj)) == null) {
1129 } else if (!unshared && (h = handles.lookup(obj)) != -1) {
1151 desc = ObjectStreamClass.lookup(cl, true);
1159 desc = ObjectStreamClass.lookup(cl, true);
1165 desc = ObjectStreamClass.lookup(cl, true);
1171 desc = ObjectStreamClass.lookup(cl, true);
1179 desc = ObjectStreamClass.lookup(cl, true);
1190 } else if (!unshared && (h = handles.lookup(obj)) != -1) {
1253 writeClassDesc(ObjectStreamClass.lookup(c
2360 int lookup(Object obj) { method in class:ObjectOutputStream.HandleTable
2469 Object lookup(Object obj) { method in class:ObjectOutputStream.ReplaceTable
[all...]
H A DObjectStreamClass.java60 * loaded in this Java VM can be found/created using the lookup method.
122 * ObjectStreamClass.lookup() (see 4461737)
198 public static ObjectStreamClass lookup(Class<?> cl) { method in class:ObjectStreamClass
199 return lookup(cl, false);
211 return lookup(cl, true);
306 static ObjectStreamClass lookup(Class<?> cl, boolean all) { method in class:ObjectStreamClass
343 * for future value to be set by a lookup() call further up the
361 // nested lookup call already set future
378 * Placeholder used in class descriptor and field reflector lookup tables
381 * of a lookup shoul
[all...]

Completed in 305 milliseconds