Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExprObjC.cpp71 QualType StrTy = Context.getConstantArrayType( in ParseObjCStringLiteral() local
75 /*Pascal=*/false, StrTy, &StrLocs[0], in ParseObjCStringLiteral()
1132 QualType StrTy; in BuildObjCEncodeExpression() local
1134 StrTy = Context.DependentTy; in BuildObjCEncodeExpression()
1152 StrTy = Context.getStringLiteralArrayType(Context.CharTy, Str.size()); in BuildObjCEncodeExpression()
1155 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()
3838 QualType StrTy = Context.getConstantArrayType( in ActOnNumericConstant() local
3844 /*Pascal*/ false, StrTy, &TokLoc, 1); in ActOnNumericConstant()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DTargetInfo.cpp9852 void addStruct(uint64_t Offset, llvm::StructType *StrTy) { in addStruct()
9853 const llvm::StructLayout *Layout = DL.getStructLayout(StrTy); in addStruct()
9854 for (unsigned i = 0, e = StrTy->getNumElements(); i != e; ++i) { in addStruct()
9855 llvm::Type *ElemTy = StrTy->getElementType(i); in addStruct()
9934 llvm::StructType *StrTy = dyn_cast<llvm::StructType>(CGT.ConvertType(Ty)); in classifyType() local
9935 if (!StrTy) in classifyType()
9939 CB.addStruct(0, StrTy); in classifyType()
9940 CB.pad(llvm::alignTo(CB.DL.getTypeSizeInBits(StrTy), 64)); in classifyType()
9943 llvm::Type *CoerceTy = CB.isUsableType(StrTy) ? StrTy : CB.getType(); in classifyType()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp157 template <typename StrTy>
159 StrTy &Result) { in convertToString()