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

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

Completed in 160 milliseconds