Home
last modified time | relevance | path

Searched refs:isPODType (Results 1 – 12 of 12) sorted by relevance

/external/clang/lib/Sema/
DSemaExprCXX.cpp3009 return T.isPODType(Self.Context); in EvaluateUnaryTypeTrait()
3046 if (T.isPODType(Self.Context)) in EvaluateUnaryTypeTrait()
3058 if (T.isPODType(Self.Context) || T->isReferenceType()) in EvaluateUnaryTypeTrait()
3078 if (T.isPODType(Self.Context)) in EvaluateUnaryTypeTrait()
3090 if (T.isPODType(Self.Context) || T->isReferenceType()) in EvaluateUnaryTypeTrait()
3115 if (T.isPODType(Self.Context) || T->isObjCLifetimeType()) in EvaluateUnaryTypeTrait()
3158 if (T.isPODType(C) || T->isReferenceType() || T->isObjCLifetimeType()) in EvaluateUnaryTypeTrait()
3201 if (T.isPODType(C) || T->isObjCLifetimeType()) in EvaluateUnaryTypeTrait()
DSemaDecl.cpp5885 if (!R.isPODType(Context) && in CheckFunctionDeclaration()
6028 bool isPODType; member in __anonbaeda9b30511::SelfReferenceChecker
6035 isPODType = false; in SelfReferenceChecker()
6038 isPODType = VD->getType().isPODType(S.Context); in SelfReferenceChecker()
6088 if (isRecordType && isPODType) return; in VisitUnaryOperator()
7070 if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) { in DiagnoseSizeOfParametersAndReturnValue()
7081 if (T->isDependentType() || !T.isPODType(Context)) in DiagnoseSizeOfParametersAndReturnValue()
9592 !Context.getBaseElementType(FD->getType()).isPODType(Context)) { in ActOnFields()
DSemaType.cpp1383 !BaseT.isPODType(Context) && in BuildArrayType()
DSemaExpr.cpp563 if (!E->getType()->isIncompleteType() && !E->getType().isPODType(Context)) { in DefaultVariadicArgumentPromotion()
9195 if (!TInfo->getType().isPODType(Context)) { in BuildVAArgExpr()
/external/clang/lib/AST/
DType.cpp897 bool QualType::isPODType(ASTContext &Context) const { in isPODType() function in QualType
905 return Context.getBaseElementType(*this).isPODType(Context); in isPODType()
932 return Context.getBaseElementType(*this).isPODType(Context); in isPODType()
DDeclCXX.cpp804 } else if (!T.isPODType(Context)) in addedMember()
/external/clang/tools/libclang/
DCXType.cpp521 return T.isPODType(AU->getASTContext()) ? 1 : 0; in clang_isPODType()
/external/clang/lib/CodeGen/
DCGExprAgg.cpp534 if (E->getType().isPODType(CGF.getContext())) { in VisitCompoundLiteralExpr()
DCGDecl.cpp794 (Ty.isPODType(getContext()) || in EmitAutoVarAlloca()
DCGClass.cpp582 if (BaseElementTy.isPODType(CGF.getContext()) || in EmitMemberInitializer()
DCGExprCXX.cpp1197 (!allocType.isPODType(getContext()) || E->hasInitializer()); in EmitCXXNewExpr()
/external/clang/include/clang/AST/
DType.h635 bool isPODType(ASTContext &Context) const;