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

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DServiceabilityAgentJVMDIModule.java104 throw new DebuggerException("Unable to initiate symbol lookup in SA's JVMDI module");
138 lookup("saExceptionThread");
139 lookup("saExceptionClass");
140 lookup("saExceptionMethod");
141 lookup("saExceptionLocation");
142 lookup("saExceptionException");
143 lookup("saExceptionCatchClass");
144 lookup("saExceptionCatchMethod");
145 lookup("saExceptionCatchLocation");
146 lookup("saBreakpointThrea
368 private Address lookup(String symbolName) { method in class:ServiceabilityAgentJVMDIModule
[all...]
/openjdk7/hotspot/test/compiler/6990212/
H A DTest6990212.java48 MethodHandle target = MethodHandles.lookup().findVirtual(intf.class, "target", MethodType.methodType(Object.class));
/openjdk7/jdk/test/java/io/Serializable/classDescGetField/
H A DGetField.java40 ObjectStreamClass cl = ObjectStreamClass.lookup(GetField.class);
/openjdk7/jdk/test/java/lang/invoke/
H A DInvokeDynamicPrintArgs.java141 return lookup().findStatic(lookup().lookupClass(),
156 return lookup().findStatic(lookup().lookupClass(), "bsm", MT_bsm());
159 return lookup().findStatic(lookup().lookupClass(), "bsm", MT_bsm());
183 return lookup().bind(this, "runTarget", genericMethodType(0, true)).asType(type());
198 return lookup().findVirtual(lookup().lookupClass(), "createTarget", methodType(MethodHandle.class));
211 return lookup()
[all...]
H A DCallSiteTest.java55 mh_foo = lookup().findStatic(CLASS, "foo", methodType(int.class, int.class, int.class));
56 mh_bar = lookup().findStatic(CLASS, "bar", methodType(int.class, int.class, int.class));
141 return lookup().findStatic(lookup().lookupClass(), "bsm_mcs", MT_bsm());
145 return ((CallSite) MH_bsm_mcs().invoke(lookup(), "foo", methodType(int.class, int.class, int.class))).dynamicInvoker();
153 return lookup().findStatic(lookup().lookupClass(), "bsm_vcs", MT_bsm());
157 return ((CallSite) MH_bsm_vcs().invoke(lookup(), "foo", methodType(int.class, int.class, int.class))).dynamicInvoker();
/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/reflect/generics/scope/
H A DDummyScope.java60 public TypeVariable<?> lookup(String name) {return null;} method in class:DummyScope
/openjdk7/jdk/src/share/classes/sun/swing/
H A DDefaultLookup.java35 * DefaultLookup provides a way to customize the lookup done by the
72 public static void setDefaultLookup(DefaultLookup lookup) { argument
74 if (!isLookupSet && lookup == null) {
79 else if (lookup == null) {
83 lookup = new DefaultLookup();
86 AppContext.getAppContext().put(DEFAULT_LOOKUP_KEY, lookup);
88 currentDefaultLookup = lookup;
102 DefaultLookup lookup;
108 lookup = currentDefaultLookup;
112 lookup
[all...]
/openjdk7/jdk/test/java/lang/invoke/7157574/
H A DTest7157574.java26 7157574 method handles returned by reflective lookup API sometimes have wrong receiver type
28 When an inherited non-static field or method is looked up in a class C using Lookup.findVirtual(C...), etc., the JSR 292 API, the first argument of the resulting method handle must be the receiver ('this'), and must be the requested class (or more specific, in the case of findSpecial or a lookup of a protected method).
36 * restricted in type to the lookup class; see below.)
43 * @summary method handles returned by reflective lookup API sometimes have wrong receiver type
56 MethodHandle m1 = lookup().findVirtual(Sub.class, "m1", methodType(void.class));
58 MethodHandle m2 = lookup().findVirtual(Sub.class, "m2", methodType(void.class));
60 MethodHandle f2 = lookup().findGetter(Sub.class, "f2", int.class);
62 MethodHandle f2s = lookup().findSetter(Sub.class, "f2", int.class);
64 MethodHandle chc = lookup().findVirtual(Sub.class, "hashCode", methodType(int.class));
66 MethodHandle ihc = lookup()
[all...]
/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/jdk/test/java/io/Serializable/badSerialVersionUID/
H A DBadSerialVersionUID.java73 ObjectStreamClass.lookup(ignore[i]).getSerialVersionUID();
76 ObjectStreamClass desc = ObjectStreamClass.lookup(convert[i]);
/openjdk7/jdk/test/java/io/Serializable/duplicateSerialFields/
H A DTest.java36 * ObjectStreamClass.lookup() for that class will not result in an
65 ObjectStreamClass.lookup(A.class);
66 ObjectStreamClass.lookup(B.class);
/openjdk7/jdk/test/java/rmi/Naming/
H A DLookupIPv6.java25 * @summary Ensure that java.rmi.Naming.lookup can handle URLs containing
50 Naming.lookup(urls[i]);
75 Naming.lookup("rmi://[" + localAddr.getHostAddress() + "]/foo");
H A DLookupNameWithColon.java26 * @summary Ensure that java.rmi.Naming.lookup functions properly for names
49 Naming.lookup("rmi://localhost:" + port + "/" + names[i]);
/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/test/compiler/7082949/
H A DTest7082949.java48 MethodHandle m1 = MethodHandles.lookup().findStatic(Test7082949.class, "test", methodType(Test7082949.class));
/openjdk7/hotspot/src/share/vm/utilities/
H A DelfSymbolTable.hpp48 bool lookup(address addr, int* stringtableIndex, int* posIndex, int* offset);
/openjdk7/jaxws/src/share/jaxws_classes/javax/annotation/
H A DResource.java72 String lookup() default "";
/openjdk7/jdk/test/java/io/Serializable/typeStringBackRef/
H A DTypeStringBackRef.java39 oout.writeObject(ObjectStreamClass.lookup(TypeStringBackRef.class));
/openjdk7/jdk/test/java/io/Serializable/unresolvedClassDesc/
H A DWrite.java46 ObjectStreamClass desc = ObjectStreamClass.lookup(Foo.class);
/openjdk7/jdk/test/java/rmi/registry/readTest/testPkg/
H A DClient.java39 Hello stub = (Hello) registry.lookup("Hello");
/openjdk7/jdk/test/java/rmi/server/Unreferenced/leaseCheckInterval/
H A DSelfTerminator.java40 Remote stub = registry.lookup(LeaseCheckInterval.BINDING);
/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);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DTestDebugger.java77 // long strAddr = debugger.lookup("helloWorld", "helloWorldString");
78 Address addr = debugger.lookup(loadObjectName, "helloWorldString");
119 addr = debugger.lookup(loadObjectName, "testByte");
132 addr = debugger.lookup(loadObjectName, "testShort");
145 addr = debugger.lookup(loadObjectName, "testInt");
158 addr = debugger.lookup(loadObjectName, "testLong");
171 addr = debugger.lookup(loadObjectName, "testFloat");
184 addr = debugger.lookup(loadObjectName, "testDouble");
/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);

Completed in 298 milliseconds

1234567891011>>