Home
last modified time | relevance | path

Searched refs:getConstantArrayType (Results 1 – 25 of 25) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp3427 QualType ASTContext::getConstantArrayType(QualType EltTy, in getConstantArrayType() function in ASTContext
3572 result = getConstantArrayType( in getVariableArrayDecayedType()
5761 return getConstantArrayType(unqualElementType, CAT->getSize(), in getUnqualifiedArrayType()
6137 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(), in getAsArrayType()
8125 = Context->getConstantArrayType(VaListTagTypedefType, in CreatePowerABIBuiltinVaListDecl()
8179 QualType VaListTagArrayType = Context->getConstantArrayType( in CreateX86_64ABIBuiltinVaListDecl()
8187 QualType IntArrayType = Context->getConstantArrayType( in CreatePNaClABIBuiltinVaListDecl()
8282 QualType VaListTagArrayType = Context->getConstantArrayType( in CreateSystemZBuiltinVaListDecl()
8333 QualType VaListTagArrayType = Context->getConstantArrayType( in CreateHexagonBuiltinVaListDecl()
9907 return getConstantArrayType(ResultType, LCAT->getSize(), in mergeTypes()
[all …]
H A DType.cpp957 return Ctx.getConstantArrayType(elementType, T->getSize(), T->getSizeExpr(), in VisitConstantArrayType()
H A DExprConstant.cpp6626 QualType AllocType = Info.Ctx.getConstantArrayType(ElemType, Size, nullptr, in HandleOperatorNewCall()
8683 QualType ArrayTy = Info.Ctx.getConstantArrayType(CharTy, Size, nullptr, in VisitSYCLUniqueStableNameExpr()
9472 AllocType = Info.Ctx.getConstantArrayType(AllocType, ArrayBound, nullptr, in VisitCXXNewExpr()
H A DASTImporter.cpp1180 return Importer.getToContext().getConstantArrayType( in VisitConstantArrayType()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td114 return ctx.getConstantArrayType(elementType, sizeValue, size,
H A DASTContext.h1401 QualType getConstantArrayType(QualType EltTy, const llvm::APInt &ArySize,
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp2474 QualType CopyprivateArrayTy = C.getConstantArrayType( in emitSingleRegion()
4421 KmpTaskAffinityInfoArrayTy = C.getConstantArrayType( in emitTaskInit()
4919 KmpDependInfoArrayTy = C.getConstantArrayType( in emitDependClause()
4999 QualType KmpDependInfoArrayTy = C.getConstantArrayType( in emitDepobjDependClause()
5612 C.getConstantArrayType(C.VoidPtrTy, ArraySize, nullptr, ArrayType::Normal, in emitReduction()
6090 QualType ArrayRDType = C.getConstantArrayType( in emitTaskReductionInit()
9407 C.getConstantArrayType(DimTy, Size, nullptr, ArrayType::Normal, 0); in emitNonContiguousDescriptor()
9493 QualType PointerArrayType = Ctx.getConstantArrayType( in emitOffloadingArrays()
9511 QualType SizeArrayType = Ctx.getConstantArrayType( in emitOffloadingArrays()
12013 C.getConstantArrayType(KmpDimTy, Size, nullptr, ArrayType::Normal, 0); in emitDoacrossInit()
[all …]
H A DCGOpenMPRuntimeGPU.cpp196 Type = C.getConstantArrayType(Type, ArraySize, nullptr, ArrayType::Normal, in buildRecordForGlobalizedVars()
3195 C.getConstantArrayType(C.VoidPtrTy, ArraySize, nullptr, ArrayType::Normal, in emitReduction()
H A DCGObjC.cpp149 = Context.getConstantArrayType(ElementType, APNumElements, nullptr, in EmitObjCCollectionLiteral()
1749 getContext().getConstantArrayType(getContext().getObjCIdType(), in EmitObjCForCollectionStmt()
H A DCGAtomic.cpp106 C.getConstantArrayType(C.CharTy, Size, nullptr, ArrayType::Normal, in AtomicInfo()
H A DCGDebugInfo.cpp3574 T = CGM.getContext().getConstantArrayType(ET, ConstVal, nullptr, in collectVarDeclProps()
4200 FType = CGM.getContext().getConstantArrayType( in EmitTypeForVarWithBlocksAttr()
H A DCGStmtOpenMP.cpp4643 QualType BaseAndPointerAndMapperType = getContext().getConstantArrayType( in EmitOMPTargetTaskBasedDirective()
4650 QualType SizesType = getContext().getConstantArrayType( in EmitOMPTargetTaskBasedDirective()
H A DCodeGenModule.cpp5264 Context.getConstantArrayType(Context.UnsignedLongTy, in getObjCFastEnumerationStateType()
H A DCGBuiltin.cpp4824 QualType SizeArrayTy = getContext().getConstantArrayType( in EmitBuiltinExpr()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp206 DeclT = S.Context.getConstantArrayType(IAT->getElementType(), in CheckStringInit()
1981 DeclType = SemaRef.Context.getConstantArrayType( in CheckArrayType()
3891 QualType ArrayType = S.Context.getConstantArrayType( in TryInitializerListConstruction()
8682 *ResultType = S.Context.getConstantArrayType( in Perform()
8934 QualType ArrayType = S.Context.getConstantArrayType( in diagnoseListInit()
H A DSema.cpp1256 QualType T = Context.getConstantArrayType(ArrayT->getElementType(), One, in ActOnEndOfTranslationUnit()
H A DSemaExprCXX.cpp2320 InitType = Context.getConstantArrayType( in BuildCXXNew()
6623 return Ctx.getConstantArrayType(T, CAT->getSize(), nullptr, in FindCompositePointerType()
H A DSemaType.cpp2529 T = Context.getConstantArrayType(T, ConstVal, ArraySize, ASM, Quals); in BuildArrayType()
6944 return C.getConstantArrayType(New, CAT->getSize(), CAT->getSizeExpr(), in wrap()
H A DSemaExprObjC.cpp70 QualType StrTy = Context.getConstantArrayType( in ParseObjCStringLiteral()
H A DSemaExpr.cpp3502 ResTy = Context.getConstantArrayType(ResTy, LengthI, nullptr, in BuildPredefinedExpr()
3509 ResTy = Context.getConstantArrayType(ResTy, LengthI, nullptr, in BuildPredefinedExpr()
3772 QualType StrTy = Context.getConstantArrayType( in ActOnNumericConstant()
H A DSemaDecl.cpp6060 QualType FoldedArrayType = Context.getConstantArrayType( in TryToFixInvalidVariablyModifiedType()
H A DSemaOpenMP.cpp17036 PrivateTy = Context.getConstantArrayType(PrivateTy, Size, nullptr, in actOnOMPReductionKindClause()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2255 return GetType(ast.getConstantArrayType( in CreateArrayType()
4228 return GetType(ast_ctx.getConstantArrayType( in GetArrayType()
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp500 QualType StrType = Context->getConstantArrayType( in getStringLiteral()
H A DRewriteModernObjC.cpp600 QualType StrType = Context->getConstantArrayType( in getStringLiteral()