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

123

/openjdk7/jdk/test/com/sun/jdi/
H A DArgumentValuesTest.java92 ReferenceType targetClass; field in class:ArgumentValuesTest
111 * Get to the top of main() to determine targetClass and mainThread
114 targetClass = bpe.location().declaringType();
136 Field theField = targetClass.fieldByName(fieldNames[ii]);
137 Value expectedVal = targetClass.getValue(theField);
188 Field theField = targetClass.fieldByName(fieldNamesVarArgs[ii]);
189 Value expectedVal = targetClass.getValue(theField);
214 Field theField = targetClass.fieldByName("intList");
215 Value expectedVal = targetClass.getValue(theField);
242 Field theField = targetClass
[all...]
H A DMultiBreakpointsTest.java201 ReferenceType targetClass; field in class:MultiBreakpointsTest
276 * to determine targetClass and mainThread
281 targetClass = bpe.location().declaringType();
H A DEarlyReturnNegativeTest.java166 ClassType targetClass; field in class:EarlyReturnNegativeTest
289 * to determine targetClass and mainThread
293 targetClass = (ClassType)bpe.location().declaringType();
324 Field theValueField = targetClass.fieldByName("byteValue");
325 byteVV = (ByteValue)targetClass.getValue(theValueField);
327 theValueField = targetClass.fieldByName("charValue");
328 charVV = (CharValue)targetClass.getValue(theValueField);
330 theValueField = targetClass.fieldByName("doubleValue");
331 doubleVV = (DoubleValue)targetClass.getValue(theValueField);
333 theValueField = targetClass
[all...]
H A DEarlyReturnTest.java298 ClassType targetClass; field in class:EarlyReturnTest
316 Field theValueField = targetClass.fieldByName("ebyteValue");
317 ByteValue theValue = (ByteValue)targetClass.getValue(theValueField);
330 Field theValueField = targetClass.fieldByName("echarValue");
331 CharValue theValue = (CharValue)targetClass.getValue(theValueField);
344 Field theValueField = targetClass.fieldByName("edoubleValue");
345 DoubleValue theValue = (DoubleValue)targetClass.getValue(theValueField);
358 Field theValueField = targetClass.fieldByName("efloatValue");
359 FloatValue theValue = (FloatValue)targetClass.getValue(theValueField);
372 Field theValueField = targetClass
[all...]
H A DGetLocalVariables.java234 ReferenceType targetClass; field in class:GetLocalVariables
253 * Get to the top of main() to determine targetClass and mainThread
256 targetClass = bpe.location().declaringType();
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 DMethodExitReturnValuesTest.java224 ClassType targetClass; field in class:MethodExitReturnValuesTest
242 Field theValueField = targetClass.fieldByName("byteValue");
243 ByteValue theValue = (ByteValue)targetClass.getValue(theValueField);
256 Field theValueField = targetClass.fieldByName("charValue");
257 CharValue theValue = (CharValue)targetClass.getValue(theValueField);
270 Field theValueField = targetClass.fieldByName("doubleValue");
271 DoubleValue theValue = (DoubleValue)targetClass.getValue(theValueField);
284 Field theValueField = targetClass.fieldByName("floatValue");
285 FloatValue theValue = (FloatValue)targetClass.getValue(theValueField);
298 Field theValueField = targetClass
[all...]
/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...]
/openjdk7/hotspot/agent/src/share/native/jvmdi/
H A Dsa.cpp380 jclass targetClass; local
423 targetClass = clazz;
447 bpRes = jvmdi->SetBreakpoint(targetClass, targetMethod, targetLocation);
449 bpRes = jvmdi->ClearBreakpoint(targetClass, targetMethod, targetLocation);
470 if (jvmdi->GetMethodName(targetClass, targetMethod, &methodName, &methodSig)
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DRequiredModelMBean.java1031 final Class<?> targetClass;
1040 targetClass = javaSecurityAccess.doIntersectionPrivilege(new PrivilegedAction<Class<?>>() {
1066 targetClass = targetObject.getClass();
1068 method = resolveMethod(targetClass, opMethodName, sig);
1092 private Method resolveMethod(Class<?> targetClass, argument
1101 "resolving " + targetClass.getName() + "." + opMethodName);
1111 final ClassLoader targetClassLoader = targetClass.getClassLoader();
1152 return targetClass.getMethod(opMethodName, argClasses);
1155 "Target method not found: " + targetClass.getName() + "." +
1197 final Class<?> targetClass;
[all...]
/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/src/share/classes/sun/reflect/
H A DAccessorGenerator.java52 protected short targetClass; field in class:AccessorGenerator

Completed in 67 milliseconds

123