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

References

tools/clang/lib/AST/ASTContext.cpp
 9042     const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
 9043     const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
tools/clang/lib/AST/Expr.cpp
 1033   assert(Ctx.getAsConstantArrayType(Ty) &&
tools/clang/lib/AST/ExprConstant.cpp
 2946       Info.Ctx.getAsConstantArrayType(S->getType());
 2965   const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(
 3261       const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(ObjType);
 5765   if (const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(T)) {
 8558       auto *CAT = Info.Ctx.getAsConstantArrayType(Init->getType());
 9067       Info.Ctx.getAsConstantArrayType(E->getSubExpr()->getType());
 9420           Info.Ctx.getAsConstantArrayType(E->getType());
 9486   const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(
 9601   if (const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(Type)) {
tools/clang/lib/AST/MicrosoftMangle.cpp
 2524           getASTContext().getAsConstantArrayType(ElementTy);
 3449                               .getAsConstantArrayType(SL->getType())
tools/clang/lib/AST/RecordLayoutBuilder.cpp
  441   if (const ConstantArrayType *AT = Context.getAsConstantArrayType(T)) {
  545   if (const ConstantArrayType *AT = Context.getAsConstantArrayType(T)) {
tools/clang/lib/AST/ScanfFormatString.cpp
  446     if (const ConstantArrayType *CAT = Ctx.getAsConstantArrayType(RawQT)) {
tools/clang/lib/Analysis/CFG.cpp
 1911     if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
 2002   while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
tools/clang/lib/CodeGen/CGCall.cpp
  905   if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) {
 2367               getContext().getAsConstantArrayType(OTy)) {
tools/clang/lib/CodeGen/CGClass.cpp
  639     = CGF.getContext().getAsConstantArrayType(FieldType);
tools/clang/lib/CodeGen/CGExpr.cpp
 3722         auto *CAT = C.getAsConstantArrayType(ArrayTy);
tools/clang/lib/CodeGen/CGExprAgg.cpp
  392       Ctx.getAsConstantArrayType(E->getSubExpr()->getType());
tools/clang/lib/CodeGen/CGExprCXX.cpp
  655   assert(!getContext().getAsConstantArrayType(E->getType())
  718              = CGF.getContext().getAsConstantArrayType(type)) {
 2048              = getContext().getAsConstantArrayType(DeleteTy)) {
tools/clang/lib/CodeGen/CGExprConstant.cpp
  617   auto CAT = Emitter.CGM.getContext().getAsConstantArrayType(Type);
 1180     auto *CAT = CGM.getContext().getAsConstantArrayType(ILE->getType());
 1310     const ConstantArrayType *CAT = CGM.getContext().getAsConstantArrayType(T);
 2099         CGM.getContext().getAsConstantArrayType(DestType);
 2302   if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(T)) {
tools/clang/lib/CodeGen/CGObjCMac.cpp
 5214   while (auto arrayType = CGM.getContext().getAsConstantArrayType(fieldType)) {
tools/clang/lib/CodeGen/CodeGenModule.cpp
 4854     const ConstantArrayType *CAT = Context.getAsConstantArrayType(E->getType());
tools/clang/lib/CodeGen/SwiftCallingConv.cpp
   74     auto arrayType = CGM.getContext().getAsConstantArrayType(type);
tools/clang/lib/CodeGen/TargetInfo.cpp
  488     while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) {
  583     while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) {
 1263   if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty))
 2737   if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
 3046   if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) {
 4599   if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
 4632              getContext().getAsConstantArrayType(FT)) {
 6211   if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
 9370   if (const ConstantArrayType *ATy = getContext().getAsConstantArrayType(Ty)) {
tools/clang/lib/Sema/SemaChecking.cpp
 8786     S.Context.getAsConstantArrayType(FExpr->getType());
 8849   const ConstantArrayType *T = Context.getAsConstantArrayType(FExpr->getType());
 9793   if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(Ty)) {
13246       Context.getAsConstantArrayType(BaseExpr->getType());
tools/clang/lib/Sema/SemaDeclCXX.cpp
 1433   if (auto *CAT = Context.getAsConstantArrayType(DecompType)) {
 4843   while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
12214   const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
tools/clang/lib/Sema/SemaExpr.cpp
 5288     Context.getAsConstantArrayType(ArgExpr->IgnoreParenCasts()->getType());
tools/clang/lib/Sema/SemaExprCXX.cpp
 1877                               = Context.getAsConstantArrayType(AllocType)) {
 2151       auto *CAT = Context.getAsConstantArrayType(Initializer->getType());
 5335         if (const ConstantArrayType *CAT = Self.Context.getAsConstantArrayType(T))
tools/clang/lib/Sema/SemaExprObjC.cpp
   67     const ConstantArrayType *CAT = Context.getAsConstantArrayType(S->getType());
tools/clang/lib/Sema/SemaInit.cpp
  970         SemaRef.Context.getAsConstantArrayType(DeclType)) {
 8415                  = S.Context.getAsConstantArrayType(CurInit.get()->getType())) {
tools/clang/lib/Sema/SemaTemplateDeduction.cpp
 1597         S.Context.getAsConstantArrayType(Arg);
 1602         S.Context.getAsConstantArrayType(Param);
tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
   65         Ctx.getAsConstantArrayType(Last->getType())) {
tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
 1721             if (auto CAT = Ctx.getAsConstantArrayType(VD->getType()))
 2120   assert(Ctx.getAsConstantArrayType(R->getValueType()) &&
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/ProTypeMemberInitCheck.cpp
  326   while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
tools/clang/tools/extra/clang-tidy/modernize/LoopConvertUtils.cpp
  438       Context->getAsConstantArrayType(ArrayType);