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

References

tools/clang/lib/Sema/SemaExprCXX.cpp
 1825   auto *Deduced = AllocType->getContainedDeducedType();
 1835       = InitializedEntity::InitializeNew(StartLoc, AllocType);
 1836     AllocType = DeduceTemplateSpecializationFromInitializer(
 1838     if (AllocType.isNull())
 1852                        << AllocType << TypeRange);
 1857                        << AllocType << TypeRange);
 1861           << AllocType << TypeRange;
 1866                        << AllocType << Deduce->getType()
 1870     AllocType = DeducedType;
 1877                               = Context.getAsConstantArrayType(AllocType)) {
 1881       AllocType = Array->getElementType();
 1885   if (CheckAllocatedType(AllocType, TypeRange.getBegin(), TypeRange))
 1890       AllocType.getObjCLifetime() == Qualifiers::OCL_None &&
 1891       AllocType->isObjCLifetimeType()) {
 1892     AllocType = Context.getLifetimeQualifiedType(AllocType,
 1892     AllocType = Context.getLifetimeQualifiedType(AllocType,
 1893                                     AllocType->getObjCARCImplicitLifetime());
 1896   QualType ResultType = Context.getPointerType(AllocType);
 2013         if (!AllocType->isDependentType()) {
 2015             ConstantArrayType::getNumAddressingBits(Context, AllocType, Value);
 2041       AllocType->isDependentType() ? 0 : Context.getTypeAlign(AllocType);
 2041       AllocType->isDependentType() ? 0 : Context.getTypeAlign(AllocType);
 2047   if (!AllocType->isDependentType() &&
 2051           AllocType, ArraySize.hasValue(), PassAlignment, PlacementArgs,
 2058   if (ArraySize && !AllocType->isDependentType())
 2060         doesUsualArrayDeleteWantSize(*this, StartLoc, AllocType);
 2094             << AllocType
 2112   if (!AllocType->isDependentType() &&
 2119           AllocType,
 2125           Context.getIncompleteArrayType(AllocType, ArrayType::Normal, 0);
 2127       InitType = AllocType;