Searched refs:targetClass (Results 26 - 50 of 71) sorted by relevance

123

/openjdk7/jdk/test/com/sun/jdi/
H A DGenericsTest.java81 ReferenceType targetClass; field in class:GenericsTest
125 * to determine targetClass and mainThread
128 targetClass = bpe.location().declaringType();
134 Field strArray = targetClass.fieldByName("strArray");
148 Field intField = targetClass.fieldByName("intField");
155 Field genField = targetClass.fieldByName("genField");
272 Field sub1Field = targetClass.fieldByName("sub1Field");
295 genSig = targetClass.genericSignature();
298 + targetClass.name() + ", received: " + genSig);
303 Field objField = targetClass
[all...]
H A DInvokeTest.java292 ReferenceType targetClass; field in class:InvokeTest
359 Method method = findMethod(targetClass, methodName, methodSig);
361 failure("FAILED: Can't find method: " + methodName + " for class = " + targetClass);
421 Field theField = targetClass.fieldByName(fieldName);
428 Field field = targetClass.fieldByName(fieldName);
438 * to determine targetClass and mainThread
441 targetClass = bpe.location().declaringType();
447 longCheckField = targetClass.fieldByName("longCheck");
448 booleanCheckField = targetClass.fieldByName("booleanCheck");
449 objectCheckField = targetClass
[all...]
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 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 DSourceNameFilterTest.java86 ReferenceType targetClass; field in class:SourceNameFilterTest
153 * to determine targetClass and mainThread
156 targetClass = bpe.location().declaringType();
159 targetClass.sourceName();
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 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 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 DThreadGroupTest.java54 ReferenceType targetClass; field in class:ThreadGroupTest
H A DAfterThreadDeathTest.java53 ReferenceType targetClass; field in class:AfterThreadDeathTest
127 * to determine targetClass and mainThread
130 targetClass = bpe.location().declaringType();
H A DAnyDebuggeeTest.java80 ReferenceType targetClass; field in class:AnyDebuggeeTest
104 * to determine targetClass and mainThread
109 targetClass = bpe.location().declaringType();
H A DEnumTest.java65 ReferenceType targetClass; field in class:EnumTest
85 * to determine targetClass
88 targetClass = bpe.location().declaringType();
H A DGetLocalVariables2Test.java68 ReferenceType targetClass; field in class:GetLocalVariables2Test
82 * to determine targetClass and mainThread
85 targetClass = bpe.location().declaringType();
H A DLineNumberOnBraceTest.java60 ReferenceType targetClass; field in class:LineNumberOnBraceTest
75 * to determine targetClass and mainThread
78 targetClass = bpe.location().declaringType();
H A DMonitorFrameInfo.java72 ReferenceType targetClass; field in class:MonitorFrameInfo
94 * to determine targetClass and mainThread
97 targetClass = bpe.location().declaringType();
H A DTemplateTest.java56 ReferenceType targetClass; field in class:TemplateTest
141 * to determine targetClass and mainThread
144 targetClass = bpe.location().declaringType();
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 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 DFramesTest.java62 ReferenceType targetClass; field in class:FramesTest
125 * to determine targetClass and mainThread
128 targetClass = bpe.location().declaringType();
H A DMonitorEventTest.java110 ReferenceType targetClass; field in class:MonitorEventTest
162 * to determine targetClass and mainThread
165 targetClass = bpe.location().declaringType();
H A DNoLaunchOptionTest.java136 String targetClass = "NotAClass";
141 targetClass};
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DDefaultMXBeanMappingFactory.java804 CompositeMapping(Class<?> targetClass, argument
809 super(targetClass, compositeType);
853 Class<?> targetClass = (Class<?>) getJavaType();
859 new CompositeBuilderViaFrom(targetClass, itemNames),
862 new CompositeBuilderViaConstructor(targetClass, itemNames),
865 new CompositeBuilderCheckGetters(targetClass, itemNames,
867 new CompositeBuilderViaSetters(targetClass, itemNames),
868 new CompositeBuilderViaProxy(targetClass, itemNames),
900 "Do not know how to make a " + targetClass.getName() +
929 /** Converts from a CompositeData to an instance of the targetClass
931 CompositeBuilder(Class<?> targetClass, String[] itemNames) argument
967 private final Class<?> targetClass; field in class:DefaultMXBeanMappingFactory.CompositeBuilder
976 CompositeBuilderViaFrom(Class<?> targetClass, String[] itemNames) argument
1038 CompositeBuilderCheckGetters(Class<?> targetClass, String[] itemNames, MXBeanMapping[] getterConverters) argument
1075 CompositeBuilderViaSetters(Class<?> targetClass, String[] itemNames) argument
1139 CompositeBuilderViaConstructor(Class<?> targetClass, String[] itemNames) argument
1367 CompositeBuilderViaProxy(Class<?> targetClass, String[] itemNames) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/sde/
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...]
H A DTemperatureTableTest.java23 ReferenceType targetClass; field in class:TemperatureTableTest
117 * to determine targetClass
120 targetClass = bpe.location().declaringType();
149 String sourceName = targetClass.sourceName();
156 List allLines = targetClass.allLineLocations();
162 List locs = targetClass.locationsOfLine(7);
188 List availSt = targetClass.availableStrata();
199 String def = targetClass.defaultStratum();
/openjdk7/jdk/test/java/lang/invoke/
H A DAccessControlTest.java336 Class<?> targetClass = targetCase.lookupClass();
337 if (!targetClassesDone.add(targetClass)) continue; // already saw this one
338 String targetPlace = placeName(targetClass);
342 Method method = targetMethod(targetClass, targetAccess, methodType);
356 Class<?> targetClass = method.getDeclaringClass();
366 sourceCase.lookup().findStatic(targetClass, methodName, methodType);
368 sourceCase.lookup().findVirtual(targetClass, methodName, methodType);
381 System.out.println(sourceCase+" => "+targetClass.getSimpleName()+"."+methodName+methodType);
389 static Method targetMethod(Class<?> targetClass, int targetAccess, MethodType methodType) { argument
390 String methodName = accessName(targetAccess)+placeName(targetClass);
[all...]

Completed in 102 milliseconds

123