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

1234567891011>>

/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp153 Symbol* SymbolTable::lookup(int index, const char* name, function in class:SymbolTable
189 Symbol* SymbolTable::lookup(const char* name, int len, TRAPS) { function in class:SymbolTable
193 Symbol* s = the_table()->lookup(index, name, len, hashValue);
205 Symbol* SymbolTable::lookup(const Symbol* sym, int begin, int end, TRAPS) { function in class:SymbolTable
217 Symbol* s = the_table()->lookup(index, name, len, hashValue);
249 Symbol* s = the_table()->lookup(index, name, len, hash);
271 // Suggestion: Push unicode-based lookup all the way into the hashing
280 return lookup(chars, utf8_length, THREAD);
285 return lookup(chars, utf8_length, THREAD);
368 Symbol* test = lookup(inde
621 oop StringTable::lookup(int index, jchar* name, function in class:StringTable
675 oop StringTable::lookup(Symbol* symbol) { function in class:StringTable
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DGenericURLContext.java192 Object obj = lookup(n.get(0));
199 public Object lookup(String name) throws NamingException { method in class:GenericURLContext
203 return ctx.lookup(res.getRemainingName());
209 public Object lookup(Name name) throws NamingException { method in class:GenericURLContext
211 return lookup(name.get(0));
215 return ctx.lookup(name.getSuffix(1));
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DFieldExpression.java96 return Identifier.lookup(buf.toString());
448 Identifier wid = Identifier.lookup(idJavaLang+"."+wrc);
466 MemberDefinition lookup = fcls.getClassLiteralLookup(fwhere);
488 makeClassLiteralInlineRef(env, ctx, lookup, className);
492 ClassDefinition inClass = lookup.getClassDefinition();
496 makeClassLiteralCacheRef(env, ctx, lookup, cfld, className);
1025 Identifier fname = Identifier.lookup(lname);
1063 MemberDefinition lookup,
1074 new TypeExpression(where, lookup.getClassDefinition() .getType());
1078 lookup, namear
1062 makeClassLiteralCacheRef(Environment env, Context ctx, MemberDefinition lookup, MemberDefinition cfld, String className) argument
1084 makeClassLiteralInlineRef(Environment env, Context ctx, MemberDefinition lookup, String className) argument
[all...]
H A DUplevelReference.java133 valName = Identifier.lookup(prefixThis + depth);
135 valName = Identifier.lookup(prefixVal + target.getName());
155 valName = Identifier.lookup(base + "$" + (++tick));
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokeGeneric.java54 private static MethodHandles.Lookup lookup() { method in class:InvokeGeneric
89 return lookup().bind(this, dispatchName,
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/
H A DBytecodeViewTopComponent.java130 result = Utilities.actionsGlobalContext().lookup(tpl);
155 final InputGraphProvider p = Lookup.getDefault().lookup(InputGraphProvider.class);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DControlFlowTopComponent.java135 result = Utilities.actionsGlobalContext().lookup(tpl);
147 final InputGraphProvider p = Lookup.getDefault().lookup(InputGraphProvider.class);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/
H A DFolderNode.java39 import org.openide.util.lookup.AbstractLookup;
40 import org.openide.util.lookup.InstanceContent;
/openjdk7/jdk/test/java/lang/invoke/
H A DPermuteArgsTest.java130 Lookup lookup = lookup();
131 for (Method m : lookup.lookupClass().getDeclaredMethods()) {
134 test(m.getName(), lookup.unreflect(m));
202 Lookup lookup = lookup();
203 for (Method m : lookup.lookupClass().getDeclaredMethods()) {
206 MethodHandle mh = lookup.unreflect(m);
H A DThrowExceptionsTest.java44 private static final Lookup LOOKUP = lookup();
123 Lookup lookup = lookup();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSource.java78 if (sourceString != null) instance = lookup(sourceString);
103 public static Source lookup(String name) { method in class:Source
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DTarget.java79 if (targetString != null) instance = lookup(targetString);
115 public static Target lookup(String name) { method in class:Target
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DMethodDocImpl.java131 for (Scope.Entry e = c.members().lookup(sym.name); e.scope != null; e = e.next()) {
163 for (Scope.Entry e = c.members().lookup(sym.name); e.scope != null; e = e.next()) {
H A DSerializedForm.java156 * so must lookup by ClassSymbol, not by ClassDocImpl.
158 for (Scope.Entry e = def.members().lookup(names.fromString(SERIALIZABLE_FIELDS)); e.scope != null; e = e.next()) {
208 for (Scope.Entry e = def.members().lookup(names.fromString(methodName)); e.scope != null; e = e.next()) {
239 for (Scope.Entry e = def.members().lookup(fieldName); e.scope != null; e = e.next()) {
/openjdk7/jdk/test/java/rmi/server/useCustomRef/
H A DUseCustomRef.java107 obj = (Ping) Naming.lookup(name);
142 obj = (Ping) Naming.lookup(name);
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCharset.java339 // those whose lookup or instantiation causes a security exception to be
465 private static Charset lookup(String charsetName) { method in class:Charset
517 return (lookup(charsetName) != null);
540 Charset cs = lookup(charsetName);
571 * forName} method, which instead employs an efficient incremental lookup
618 Charset cs = lookup(csn);
/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.cpp82 KlassInfoEntry* KlassInfoBucket::lookup(const klassOop k) { function in class:KlassInfoBucket
142 KlassInfoEntry* KlassInfoTable::lookup(const klassOop k) { function in class:KlassInfoTable
145 KlassInfoEntry* e = _buckets[idx].lookup(k);
156 KlassInfoEntry* elt = lookup(k);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DNextDiagramAction.java48 public NextDiagramAction(Lookup lookup) { argument
H A DPrevDiagramAction.java48 public PrevDiagramAction(Lookup lookup) { argument
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DPackage.java72 pkg = Identifier.lookup(pkg.getQualifier(), pkg.getFlatName());
H A DType.java243 Identifier mname = Identifier.lookup(
247 return Identifier.lookup(className.getQualifier(), mname);
322 return Type.tClass(Identifier.lookup(sig.substring(1, sig.length() - 1).replace(SIGC_PACKAGE, '.')));
/openjdk7/jdk/test/sun/rmi/runtime/Log/6409194/
H A DNoConsoleOutput.java105 Foo foostub = (Foo) reg.lookup("foo");
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDocumentImpl.java538 LCount lc = LCount.lookup(type);
585 LCount lc = LCount.lookup(type);
673 LCount lc = LCount.lookup(evt.getType());
924 LCount lc = LCount.lookup(MutationEventImpl.DOM_ATTR_MODIFIED);
943 LCount lc = LCount.lookup(MutationEventImpl.DOM_SUBTREE_MODIFIED);
976 LCount lc = LCount.lookup(MutationEventImpl.DOM_ATTR_MODIFIED);
1020 LCount.lookup(MutationEventImpl.DOM_CHARACTER_DATA_MODIFIED);
1069 LCount lc = LCount.lookup(MutationEventImpl.DOM_NODE_INSERTED);
1080 lc = LCount.lookup(
1157 LCount lc = LCount.lookup(MutationEventImp
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/dummy/
H A DDummyDebugger.java108 public Address lookup(String objectName, String symbol) { method in class:DummyDebugger
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteDebuggerServer.java65 Address addr = debugger.lookup(objectName, symbol);

Completed in 603 milliseconds

1234567891011>>