Searched refs:lookup (Results 276 - 292 of 292) sorted by relevance

<<1112

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAttr.java1075 for (Scope.Entry e = enumType.tsym.members().lookup(name);
1918 for (Scope.Entry e = mapping.fst.lookup(names.init);
3234 Assert.checkNonNull(env.info.scope.lookup(l.head.name).scope);
3295 Scope.Entry e = c.members().lookup(names.serialVersionUID);
H A DTransTypes.java467 for (Scope.Entry e = tree.sym.owner.members().lookup(tree.name);
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DBatchEnvironment.java435 Identifier stem = Identifier.lookup(outerNm.getQualifier(),
440 Identifier.lookup(name));
962 pkgNm = Identifier.lookupInner(outerNm, Identifier.lookup(mangledName));
/openjdk7/jdk/test/java/lang/invoke/
H A DBigArityTest.java47 static MethodHandles.Lookup LOOKUP = MethodHandles.lookup();
70 MethodHandles.lookup().unreflect(
398 MethodHandle mh = MethodHandles.lookup().findStatic(BigArityTest.class, "hashArguments_"+ARITY, mt);
605 MethodHandle mh = MethodHandles.lookup().findStatic(BigArityTest.class, "hashArguments_"+ARITY, mt);
814 MethodHandle mh = MethodHandles.lookup().findStatic(BigArityTest.class, "hashArguments_"+ARITY, mt);
1006 mh = MethodHandles.lookup().findStatic(BigArityTest.class, "hashArguments_"+ARITY, mt);
1010 mh = MethodHandles.lookup().findStatic(BigArityTest.class, "hashArguments_"+(ARITY-1), mt.dropParameterTypes(ARITY-1, ARITY));
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp643 // exception handler lookup
650 // be set into thread local storage, and do another lookup for an
676 // found handling method => lookup exception handler
890 * the interpreter's native entries call NativeLookup::lookup() which
891 * throws the exception when the lookup fails. The exception is then
892 * caught and forwarded on the return from NativeLookup::lookup() call
2190 static int _lookups; // number of calls to lookup
2224 AdapterHandlerEntry* lookup(int total_args_passed, BasicType* sig_bt) { function in class:AdapterHandlerTable
2399 entry = _adapters->lookup(total_args_passed, sig_bt);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp309 // lookup exception klass
327 // lookup exception klass
340 // lookup exception klass
428 // exception handler lookup
434 // be set into thread local storage, and do another lookup for an
1105 // lookup method signature's fingerprint
1193 // lookup native function entry point if it doesn't exist
1196 NativeLookup::lookup(m, in_base_library, CHECK);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DAttribute.java147 public static Attribute lookup(Map<Layout, Attribute> defs, int ctype, method in class:Attribute
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DDTDParser.java2275 String lookup(char value [], int len) { method in class:DTDParser.NameCache
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnector.java1925 Object objref = ctx.lookup(jndiURL);
2463 * This array is a lookup table that translates unicode characters
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp1243 // If the method is native, do the lookup in the thread requesting
1251 address adr = NativeLookup::lookup(method, in_base_library, THREAD);
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodHandles.cpp547 return StringTable::lookup(s);
642 // Time to do the lookup.
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DParser.java1415 res.id = Identifier.lookup(buf.toString());
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DValueConversions.java56 private static final Lookup IMPL_LOOKUP = MethodHandles.lookup();
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.cpp830 // _oop_map_cache is constant after init; lookup below does is own locking.
831 _oop_map_cache->lookup(method, bci, entry_for);
876 // otherwise field lookup fails
891 // 3) apply field lookup recursively if superclass exists
895 // 4) otherwise field lookup fails
911 // 3) apply field lookup recursively if superclass exists
915 // 4) otherwise field lookup fails
1104 // lookup a method in all the interfaces that this class implements
1123 // Retry lookup after we got the lock
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java643 DataSource ds = (DataSource)ctx.lookup
4311 * application can do a lookup using that name to retrieve the
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java186 /** Environment for symbol lookup, set by genClass
292 syms.objectType.tsym.members().lookup(sym.name).scope != null)
1185 code.emit4(-1); code.emit4(-1); // leave space for lookup table
1234 // Sort non-default offsets and copy into lookup table.
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java2087 for (Scope.Entry e = c.members().lookup(ms.name, implFilter);

Completed in 306 milliseconds

<<1112