Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.cpp1845 QualType StrTy = in ActOnStringLiteral() local
1850 Kind, Literal.Pascal, StrTy, in ActOnStringLiteral()
1876 Context.getArrayDecayedType(StrTy), SizeType in ActOnStringLiteral()
3739 QualType StrTy = Context.getConstantArrayType( in ActOnNumericConstant() local
3744 /*Pascal*/false, StrTy, &TokLoc, 1); in ActOnNumericConstant()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DTargetInfo.cpp9421 void addStruct(uint64_t Offset, llvm::StructType *StrTy) { in addStruct()
9422 const llvm::StructLayout *Layout = DL.getStructLayout(StrTy); in addStruct()
9423 for (unsigned i = 0, e = StrTy->getNumElements(); i != e; ++i) { in addStruct()
9424 llvm::Type *ElemTy = StrTy->getElementType(i); in addStruct()
9503 llvm::StructType *StrTy = dyn_cast<llvm::StructType>(CGT.ConvertType(Ty)); in classifyType() local
9504 if (!StrTy) in classifyType()
9508 CB.addStruct(0, StrTy); in classifyType()
9509 CB.pad(llvm::alignTo(CB.DL.getTypeSizeInBits(StrTy), 64)); in classifyType()
9512 llvm::Type *CoerceTy = CB.isUsableType(StrTy) ? StrTy : CB.getType(); in classifyType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp150 template <typename StrTy>
152 StrTy &Result) { in convertToString()