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

References

tools/clang/lib/Sema/SemaInit.cpp
 1031   if (T->isArrayType())
 1032     maxElements = numArrayElements(T);
 1033   else if (T->isRecordType())
 1034     maxElements = numStructUnionElements(T);
 1035   else if (T->isVectorType())
 1036     maxElements = T->castAs<VectorType>()->getNumElements();
 1051       ParentIList, Index, T, StructuredList, StructuredIndex,
 1058   CheckListElementTypes(Entity, ParentIList, T,
 1064     StructuredSubobjectInitList->setType(T);
 1077     if (!VerifyOnly && (T->isArrayType() || T->isRecordType()) &&
 1077     if (!VerifyOnly && (T->isArrayType() || T->isRecordType()) &&
 1092     auto *CXXRD = T->getAsCXXRecordDecl();
 1096           << StructuredSubobjectInitList->getSourceRange() << T;