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

123

/openjdk7/jdk/test/com/sun/jdi/
H A DOptionTest.java137 String targetClass = "HelloWorld";
152 targetClass};
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 DJava_gTest.java54 ReferenceType targetClass; field in class:Java_gTest
116 * to determine targetClass and mainThread
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 DFinalLocalsTest.java68 ReferenceType targetClass; field in class:FinalLocalsTest
167 * to determine targetClass and mainThread
170 targetClass = bpe.location().declaringType();
H A DOnThrowTest.java154 String targetClass = "OnThrowTarget";
159 targetClass};
H A DLocationTest.java59 ReferenceType targetClass; field in class:LocationTest
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 DMultiBreakpointsTest.java201 ReferenceType targetClass; field in class:MultiBreakpointsTest
276 * to determine targetClass and mainThread
281 targetClass = bpe.location().declaringType();
H A DLocalVariableEqual.java114 ReferenceType targetClass; field in class:LocalVariableEqual
234 * Get to the top of main() to determine targetClass and mainThread
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");
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DFilterMangleTest.java69 ReferenceType targetClass; field in class:FilterMangleTest
161 targetClass = bpe.location().declaringType();
H A DMangleStepTest.java28 ReferenceType targetClass; field in class:MangleStepTest
/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");
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DReflection.java183 Class targetClass = (target == null ? memberClass : target.getClass());
184 if (targetClass != currentClass) {
190 if (!isSubclassOf(targetClass, currentClass)) {
H A DMethodAccessorGenerator.java306 targetClass = asm.cpi();
317 asm.emitConstantPoolInterfaceMethodref(targetClass, asm.cpi());
322 asm.emitConstantPoolMethodref(targetClass, asm.cpi());
442 cb.opc_new(targetClass);
481 cb.opc_checkcast(targetClass);
H A DAccessorGenerator.java52 protected short targetClass; field in class:AccessorGenerator
/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/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DReflectiveTie.java85 Class targetClass = target.getClass() ;
86 classData = pm.getClassData( targetClass ) ;
/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/javax/management/openmbean/
H A DArrayType.java590 Class<?> targetClass = Array.newInstance(elementClass, dims).getClass();
593 if ( ! targetClass.isAssignableFrom(objClass) ) {

Completed in 77 milliseconds

123