HomeSort by relevance Sort by last modified time
    Searched refs:ivarType (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/CodeGen/
CGObjC.cpp 456 QualType ivarType = ivar->getType();
458 = CGM.getContext().getTypeInfoInChars(ivarType);
510 if (ivarType.hasNonTrivialObjCLifetime() ||
512 CGM.getContext().getObjCGCAttrKind(ivarType))) {
519 if (const RecordType *recordType = ivarType->getAs<RecordType>())
700 QualType ivarType = ivar->getType();
701 if (ivarType->isAnyComplexType()) {
705 } else if (hasAggregateLLVMType(ivarType)) {
709 EmitAggregateCopy(ReturnValue, LV.getAddress(), ivarType);
717 value = emitARCRetainLoadOfScalar(*this, LV, ivarType);
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 462 QualType ivarType = ivar->getType();
463 Qualifiers::ObjCLifetime ivarLifetime = ivarType.getObjCLifetime();
683 QualType IvarType = Context.getCanonicalType(Ivar->getType());
686 if (Context.getCanonicalType(PropertyIvarType) != IvarType) {
689 && isa<ObjCObjectPointerType>(IvarType))
693 IvarType->getAs<ObjCObjectPointerType>());
698 compat = (CheckAssignmentConstraints(Loc, PropertyIvarType, IvarType)
704 << Ivar->getDeclName() << IvarType;
714 QualType rhsType =Context.getCanonicalType(IvarType).getUnqualifiedType();
719 << Ivar->getDeclName() << IvarType;
    [all...]

Completed in 36 milliseconds