Searched defs:StrTy (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/CodeGen/
H A DTargetInfo.cpp5724 void addStruct(uint64_t Offset, llvm::StructType *StrTy) { argument
5725 const llvm::StructLayout *Layout = DL.getStructLayout(StrTy);
5726 for (unsigned i = 0, e = StrTy->getNumElements(); i != e; ++i) {
5727 llvm::Type *ElemTy = StrTy->getElementType(i);
5807 llvm::StructType *StrTy = dyn_cast<llvm::StructType>(CGT.ConvertType(Ty));
5808 if (!StrTy)
5812 CB.addStruct(0, StrTy);
5813 CB.pad(llvm::RoundUpToAlignment(CB.DL.getTypeSizeInBits(StrTy), 64));
5816 llvm::Type *CoerceTy = CB.isUsableType(StrTy) ? StrTy
[all...]
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp72 QualType StrTy = Context.getConstantArrayType( local
76 /*Pascal=*/false, StrTy, &StrLocs[0],
935 QualType StrTy; local
937 StrTy = Context.DependentTy;
951 StrTy = Context.CharTy;
954 StrTy.addConst();
955 StrTy = Context.getConstantArrayType(StrTy, llvm::APInt(32, Str.size()+1),
959 return new (Context) ObjCEncodeExpr(StrTy, EncodedTypeInfo, AtLoc, RParenLoc);
H A DSemaExpr.cpp1538 QualType StrTy = Context.getConstantArrayType(CharTyConst, local
1544 StrTy = Context.getAddrSpaceQualType(StrTy, LangAS::opencl_constant);
1549 Kind, Literal.Pascal, StrTy,
1575 Context.getArrayDecayedType(StrTy), SizeType
3132 QualType StrTy = Context.getConstantArrayType( local
3137 /*Pascal*/false, StrTy, &TokLoc, 1);

Completed in 1287 milliseconds