Lines Matching defs:constructor
697 oop constructor = java_class->obj_field(_resolved_constructor_offset);
698 assert(constructor == NULL || constructor->is_method(), "should be method");
699 return methodOop(constructor);
703 void java_lang_Class::set_resolved_constructor(oop java_class, methodOop constructor) {
704 assert(constructor->is_method(), "should be method");
705 java_class->obj_field_put(_resolved_constructor_offset, constructor);
1354 // constructor for new backtrace
1975 oop java_lang_reflect_Constructor::parameter_types(oop constructor) {
1977 return constructor->obj_field(parameterTypes_offset);
1980 void java_lang_reflect_Constructor::set_parameter_types(oop constructor, oop value) {
1982 constructor->obj_field_put(parameterTypes_offset, value);
1985 oop java_lang_reflect_Constructor::exception_types(oop constructor) {
1987 return constructor->obj_field(exceptionTypes_offset);
1990 void java_lang_reflect_Constructor::set_exception_types(oop constructor, oop value) {
1992 constructor->obj_field_put(exceptionTypes_offset, value);
2005 int java_lang_reflect_Constructor::modifiers(oop constructor) {
2007 return constructor->int_field(modifiers_offset);
2010 void java_lang_reflect_Constructor::set_modifiers(oop constructor, int value) {
2012 constructor->int_field_put(modifiers_offset, value);
2019 oop java_lang_reflect_Constructor::signature(oop constructor) {
2022 return constructor->obj_field(signature_offset);
2025 void java_lang_reflect_Constructor::set_signature(oop constructor, oop value) {
2028 constructor->obj_field_put(signature_offset, value);
2035 oop java_lang_reflect_Constructor::annotations(oop constructor) {
2038 return constructor->obj_field(annotations_offset);
2041 void java_lang_reflect_Constructor::set_annotations(oop constructor, oop value) {
2044 constructor->obj_field_put(annotations_offset, value);