Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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.cpp1855 QualType StrTy = in ActOnStringLiteral() local
1860 Kind, Literal.Pascal, StrTy, in ActOnStringLiteral()
1886 Context.getArrayDecayedType(StrTy), SizeType in ActOnStringLiteral()
3772 QualType StrTy = Context.getConstantArrayType( in ActOnNumericConstant() local
3777 /*Pascal*/false, StrTy, &TokLoc, 1); in ActOnNumericConstant()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DTargetInfo.cpp9467 void addStruct(uint64_t Offset, llvm::StructType *StrTy) { in addStruct()
9468 const llvm::StructLayout *Layout = DL.getStructLayout(StrTy); in addStruct()
9469 for (unsigned i = 0, e = StrTy->getNumElements(); i != e; ++i) { in addStruct()
9470 llvm::Type *ElemTy = StrTy->getElementType(i); in addStruct()
9549 llvm::StructType *StrTy = dyn_cast<llvm::StructType>(CGT.ConvertType(Ty)); in classifyType() local
9550 if (!StrTy) in classifyType()
9554 CB.addStruct(0, StrTy); in classifyType()
9555 CB.pad(llvm::alignTo(CB.DL.getTypeSizeInBits(StrTy), 64)); in classifyType()
9558 llvm::Type *CoerceTy = CB.isUsableType(StrTy) ? StrTy : CB.getType(); in classifyType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp150 template <typename StrTy>
152 StrTy &Result) { in convertToString()