reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/include/clang/AST/Type.h
  783   bool isPODType(const ASTContext &Context) const;

References

tools/clang/lib/CodeGen/CGClass.cpp
  644     if (BaseElementTy.isPODType(CGF.getContext()) ||
tools/clang/lib/CodeGen/CGDecl.cpp
 1417          ((Ty.isPODType(getContext()) ||
tools/clang/lib/CodeGen/CGExprAgg.cpp
  654       E->getType().isPODType(CGF.getContext())) {
tools/clang/lib/CodeGen/CGExprCXX.cpp
 1647                    (!allocType.isPODType(getContext()) || E->hasInitializer() ||
tools/clang/lib/Sema/SemaDecl.cpp
10529       else if (!R.isPODType(Context) && !R->isVoidType() &&
10792         isPODType = VD->getType().isPODType(S.Context);
13124   if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) {
13135     if (T->isDependentType() || !T.isPODType(Context))
tools/clang/lib/Sema/SemaDeclCXX.cpp
 3532       bool AllPODFields = FieldME->getType().isPODType(S.Context);
 3545         if (!FieldME->getType().isPODType(S.Context))
tools/clang/lib/Sema/SemaExpr.cpp
14514     if (!TInfo->getType().isPODType(Context)) {
tools/clang/lib/Sema/SemaExprCXX.cpp
 4585     return T.isPODType(C);
 4643     if (T.isPODType(C))
 4653     if (T.isPODType(C))
 4664     if (T.isPODType(C) || T->isReferenceType())
 4674     if (T.isPODType(C))
 4694     if (T.isPODType(C))
 4756     if (T.isPODType(C) || T->isReferenceType())
 4780     if (T.isPODType(C) || T->isObjCLifetimeType())
 4793     if (T.isPODType(C))
 4808     if (T.isPODType(C) || T->isReferenceType() || T->isObjCLifetimeType())
 4850     if (T.isPODType(C) || T->isObjCLifetimeType())
tools/clang/lib/Sema/SemaStmt.cpp
 2802   if (VariableType.isPODType(SemaRef.Context))
tools/clang/tools/libclang/CXType.cpp
  786   return T.isPODType(cxtu::getASTUnit(TU)->getASTContext()) ? 1 : 0;