Searched defs:targetClass (Results 26 - 50 of 62) sorted by relevance

123

/openjdk7/jdk/test/com/sun/jdi/
H A DInstanceFilter.java72 ReferenceType targetClass; field in class:InstanceFilter
133 targetClass = bpe.location().declaringType();
135 Field field = targetClass.fieldByName("second");
136 theInstance = (ObjectReference)(targetClass.getValue(field));
H A DLocalVariableEqual.java114 ReferenceType targetClass; field in class:LocalVariableEqual
234 * Get to the top of main() to determine targetClass and mainThread
H A DPopAndStepTest.java48 ReferenceType targetClass; field in class:PopAndStepTest
105 * to determine targetClass and mainThread
113 * to determine targetClass and mainThread
116 targetClass = bpe.location().declaringType();
H A DPopAsynchronousTest.java68 ReferenceType targetClass; field in class:PopAsynchronousTest
172 * to determine targetClass and mainThread
175 targetClass = bpe.location().declaringType();
182 List meths = targetClass.methodsByName("report");
H A DSuspendThreadTest.java66 ClassType targetClass; field in class:SuspendThreadTest
90 ((LongValue)targetClass.
116 * to determine targetClass and mainThread
119 targetClass = (ClassType)bpe.location().declaringType();
123 Location loc1 = findMethod(targetClass, "bkpt", "()V").location();
131 debuggeeCountField = targetClass.fieldByName("count");
H A DCountFilterTest.java71 ReferenceType targetClass; field in class:CountFilterTest
114 List meths = targetClass.methodsByName(methodName);
128 * to determine targetClass and mainThread
131 targetClass = bpe.location().declaringType();
H A DFinalLocalsTest.java68 ReferenceType targetClass; field in class:FinalLocalsTest
167 * to determine targetClass and mainThread
170 targetClass = bpe.location().declaringType();
H A DInstancesTest.java104 ReferenceType targetClass; field in class:InstancesTest
148 * to determine targetClass and mainThread
153 targetClass = bpe.location().declaringType();
205 if (targetClass.name().equals("InstancesTarg")) {
206 List<ObjectReference> noInstances = targetClass.instances(0);
208 failure("failure: instances(0): " + noInstances.size() + ", for " + targetClass);
210 noInstances = targetClass.instances(1);
212 failure("failure: instances(1): " + noInstances.size() + ", for " + targetClass);
216 noInstances = targetClass.instances(-1);
H A DMonitorEventTest.java110 ReferenceType targetClass; field in class:MonitorEventTest
162 * to determine targetClass and mainThread
165 targetClass = bpe.location().declaringType();
H A DResumeOneThreadTest.java89 ReferenceType targetClass; field in class:ResumeOneThreadTest
197 * to determine targetClass and mainThread
200 targetClass = bpe.location().declaringType();
209 Location loc1 = findMethod(targetClass, "bkpt1", "(Ljava/lang/String;)V").location();
214 Location loc2 = findMethod(targetClass, "bkpt2", "()V").location();
H A DSourceNameFilterTest.java86 ReferenceType targetClass; field in class:SourceNameFilterTest
153 * to determine targetClass and mainThread
156 targetClass = bpe.location().declaringType();
159 targetClass.sourceName();
H A DTemplateTest.java56 ReferenceType targetClass; field in class:TemplateTest
141 * to determine targetClass and mainThread
144 targetClass = bpe.location().declaringType();
H A DTwoThreadsTest.java101 ReferenceType targetClass; field in class:TwoThreadsTest
180 * to determine targetClass and mainThread
183 targetClass = bpe.location().declaringType();
191 Location loc1 = findMethod(targetClass, "bkpt1", "(I)V").location();
192 Location loc2 = findMethod(targetClass, "bkpt2", "(I)V").location();
H A DArrayRangeTest.java57 ReferenceType targetClass; field in class:ArrayRangeTest
296 * Get to the top of main() to determine targetClass
299 targetClass = bpe.location().declaringType();
300 Field fullField = targetClass.fieldByName("fullArray");
301 Field emptyField = targetClass.fieldByName("emptyArray");
302 ArrayReference emptyAR = (ArrayReference)targetClass.getValue(emptyField);
303 ArrayReference fullAR = (ArrayReference)targetClass.getValue(fullField);
H A DConstantPoolInfo.java54 ReferenceType targetClass; field in class:ConstantPoolInfo
92 * to determine targetClass and mainThread
95 targetClass = bpe.location().declaringType();
106 if (expectedMajorVersion != targetClass.majorVersion()) {
107 failure("unexpected major version: actual value: " + targetClass.majorVersion()
111 if (expectedMinorVersion != targetClass.minorVersion()) {
112 failure("unexpected minor version: actual value: " + targetClass.minorVersion()
123 cpool_count = targetClass.constantPoolCount();
125 cpbytes = targetClass.constantPool();
H A DGetSetLocalTest.java128 ReferenceType targetClass; field in class:GetSetLocalTest
621 * Get to the top of main() to determine targetClass and mainThread
628 targetClass = bpe.location().declaringType();
629 println("targetClass");
H A DInvokeHangTest.java129 ReferenceType targetClass; field in class:InvokeHangTest
212 * to determine targetClass and mainThread
215 targetClass = bpe.location().declaringType();
223 Location loc1 = findMethod(targetClass, "bkpt1", "(I)V").location();
224 Location loc2 = findMethod(targetClass, "bkpt2", "(I)V").location();
H A DPopSynchronousTest.java96 ReferenceType targetClass; field in class:PopSynchronousTest
133 Field field = targetClass.fieldByName("s");
134 StringReference sr = (StringReference)(targetClass.getValue(field));
195 Field field = targetClass.fieldByName("s");
197 ((ClassType)targetClass).setValue(field, vm().mirrorOf(expected));
208 List meths = targetClass.methodsByName(methodName);
234 * to determine targetClass and mainThread
237 targetClass = bpe.location().declaringType();
H A DReferrersTest.java103 ReferenceType targetClass; field in class:ReferrersTest
147 * to determine targetClass and mainThread
152 targetClass = bpe.location().declaringType();
204 if (targetClass.name().equals("ReferrersTarg")) {
205 List<ObjectReference> noInstances = targetClass.instances(0);
207 failure("failure: instances(0): " + noInstances.size() + ", for " + targetClass);
209 noInstances = targetClass.instances(1);
211 failure("failure: instances(1): " + noInstances.size() + ", for " + targetClass);
215 noInstances = targetClass.instances(-1);
326 if (targetClass
[all...]
H A DSimulResumerTest.java104 ReferenceType targetClass; field in class:SimulResumerTest
221 * to determine targetClass and mainThread
224 targetClass = bpe.location().declaringType();
232 Location loc1 = findMethod(targetClass, "bkpt1", "(I)V").location();
233 Location loc2 = findMethod(targetClass, "bkpt2", "(I)V").location();
H A DVarargsTest.java153 ClassType targetClass; field in class:VarargsTest
207 * to determine targetClass and mainThread
210 targetClass = (ClassType)bpe.location().declaringType();
259 doInvoke(targetClass, varString, nullArg1, "");
265 doInvoke(targetClass, varString, nullArg1, "-null-");
271 doInvoke(targetClass, varString2, nullArg2, "9");
278 doInvoke(targetClass, varString2, nullArg2, "9-null-");
285 doInvoke(targetClass, varString, args1, "1");
291 doInvoke(targetClass, varString, args1, "1234");
299 doInvoke(targetClass, varString
[all...]
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DFilterMangleTest.java69 ReferenceType targetClass; field in class:FilterMangleTest
161 targetClass = bpe.location().declaringType();
H A DMangleTest.java24 ReferenceType targetClass; field in class:MangleTest
152 * to determine targetClass
155 targetClass = bpe.location().declaringType();
158 String sourceName = targetClass.sourceName();
167 sourceNames = targetClass.sourceNames("Java");
174 sourceNames = targetClass.sourceNames("XYZ");
181 sourceNames = targetClass.sourceNames(null);
188 sourceNames = targetClass.sourceNames("Rats");
196 sourcePaths = targetClass.sourcePaths("Java");
203 sourcePaths = targetClass
[all...]
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DAccessibleObject.java233 Class<?> targetClass = clazz;
236 && ((targetClass = obj.getClass()) != clazz)) {
237 // Must match a 2-list of { caller, targetClass }.
240 if (cache2[1] == targetClass &&
253 slowCheckMemberAccess(caller, clazz, obj, modifiers, targetClass);
258 Class<?> targetClass)
264 Object cache = ((targetClass == clazz)
266 : new Class<?>[] { caller, targetClass });
257 slowCheckMemberAccess(Class<?> caller, Class<?> clazz, Object obj, int modifiers, Class<?> targetClass) argument
/openjdk7/jdk/test/com/sun/jdi/redefine/
H A DRedefineTest.java69 ReferenceType targetClass; field in class:RedefineTest
275 targetClass = bpe.location().declaringType();
288 List lastlys = targetClass.methodsByName("lastly");

Completed in 52 milliseconds

123