Lines Matching refs:element_object
406 ObjPtr<mirror::Object> element_object = nullptr; in ProcessAnnotationValue() local
459 element_object = Runtime::Current()->GetClassLinker()->ResolveString( in ProcessAnnotationValue()
462 if (element_object == nullptr) { in ProcessAnnotationValue()
475 element_object = Runtime::Current()->GetClassLinker()->ResolveType( in ProcessAnnotationValue()
480 if (element_object == nullptr) { in ProcessAnnotationValue()
485 element_object = self->GetException(); in ProcessAnnotationValue()
512 element_object = mirror::Constructor::CreateFromArtMethod<PointerSize::k64, in ProcessAnnotationValue()
515 element_object = mirror::Constructor::CreateFromArtMethod<PointerSize::k32, in ProcessAnnotationValue()
520 element_object = mirror::Method::CreateFromArtMethod<PointerSize::k64, in ProcessAnnotationValue()
523 element_object = mirror::Method::CreateFromArtMethod<PointerSize::k32, in ProcessAnnotationValue()
527 if (element_object == nullptr) { in ProcessAnnotationValue()
549 element_object = mirror::Field::CreateFromArtField<PointerSize::k64, in ProcessAnnotationValue()
552 element_object = mirror::Field::CreateFromArtField<PointerSize::k32, in ProcessAnnotationValue()
555 if (element_object == nullptr) { in ProcessAnnotationValue()
577 element_object = enum_field->GetObject(field_class.Get()); in ProcessAnnotationValue()
651 element_object = new_array.Get(); in ProcessAnnotationValue()
660 element_object = ProcessEncodedAnnotation(klass, &annotation); in ProcessAnnotationValue()
661 if (element_object == nullptr) { in ProcessAnnotationValue()
671 CHECK(element_object == nullptr); in ProcessAnnotationValue()
685 element_object = BoxPrimitive(primitive_type, annotation_value->value_).Ptr(); in ProcessAnnotationValue()
690 annotation_value->value_.SetL(element_object.Ptr()); in ProcessAnnotationValue()