Home
last modified time | relevance | path

Searched refs:StrTy (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExprObjC.cpp70 QualType StrTy = Context.getConstantArrayType( in ParseObjCStringLiteral() local
74 /*Pascal=*/false, StrTy, &StrLocs[0], in ParseObjCStringLiteral()
1134 QualType StrTy; in BuildObjCEncodeExpression() local
1136 StrTy = Context.DependentTy; in BuildObjCEncodeExpression()
1154 StrTy = Context.getStringLiteralArrayType(Context.CharTy, Str.size()); in BuildObjCEncodeExpression()
1157 return new (Context) ObjCEncodeExpr(StrTy, EncodedTypeInfo, AtLoc, RParenLoc); in BuildObjCEncodeExpression()
H A DSemaExpr.cpp1913 QualType StrTy = in ActOnStringLiteral() local
1918 Kind, Literal.Pascal, StrTy, in ActOnStringLiteral()
1944 Context.getArrayDecayedType(StrTy), SizeType in ActOnStringLiteral()
3834 QualType StrTy = Context.getConstantArrayType( in ActOnNumericConstant() local
3840 /*Pascal*/ false, StrTy, &TokLoc, 1); in ActOnNumericConstant()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DTargetInfo.cpp9718 void addStruct(uint64_t Offset, llvm::StructType *StrTy) { in addStruct()
9719 const llvm::StructLayout *Layout = DL.getStructLayout(StrTy); in addStruct()
9720 for (unsigned i = 0, e = StrTy->getNumElements(); i != e; ++i) { in addStruct()
9721 llvm::Type *ElemTy = StrTy->getElementType(i); in addStruct()
9800 llvm::StructType *StrTy = dyn_cast<llvm::StructType>(CGT.ConvertType(Ty)); in classifyType() local
9801 if (!StrTy) in classifyType()
9805 CB.addStruct(0, StrTy); in classifyType()
9806 CB.pad(llvm::alignTo(CB.DL.getTypeSizeInBits(StrTy), 64)); in classifyType()
9809 llvm::Type *CoerceTy = CB.isUsableType(StrTy) ? StrTy : CB.getType(); in classifyType()
/llvm-project-15.0.7/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp156 template <typename StrTy>
158 StrTy &Result) { in convertToString()