Searched defs:ivarType (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp647 QualType ivarType = ivar->getType();
648 Qualifiers::ObjCLifetime ivarLifetime = ivarType.getObjCLifetime();
670 SplitQualType split = ivarType.split();
672 assert(ivarType->isObjCARCImplicitlyUnretainedType());
674 ivarType = S.Context.getQualifiedType(split);
675 ivar->setType(ivarType);
734 QualType ivarType = ivar->getType(); local
735 Qualifiers::ObjCLifetime ivarLifetime = ivarType.getObjCLifetime();
/external/clang/lib/CodeGen/
H A DCGObjC.cpp626 QualType ivarType = ivar->getType(); local
628 CGM.getContext().getTypeInfoInChars(ivarType);
653 if (ivarType.getObjCLifetime() == Qualifiers::OCL_Strong)
689 if (ivarType.hasNonTrivialObjCLifetime() ||
691 CGM.getContext().getObjCGCAttrKind(ivarType))) {
698 if (const RecordType *recordType = ivarType->getAs<RecordType>())
933 QualType ivarType = ivar->getType(); local
934 switch (getEvaluationKind(ivarType)) {
938 MakeNaturalAlignAddrLValue(ReturnValue, ivarType),
946 EmitAggregateCopy(ReturnValue, LV.getAddress(), ivarType);
[all...]

Completed in 703 milliseconds