Searched refs:CharTy (Results 1 - 25 of 31) sorted by relevance

12

/external/clang/test/Sema/
H A Dwarn-char-subscripts.c45 typedef char CharTy; typedef
48 CharTy subscript = 0;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp323 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
363 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
404 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
576 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
H A DCStringChecker.cpp288 assert(ER->getValueType() == C.getASTContext().CharTy &&
362 QualType PtrTy = Ctx.getPointerType(Ctx.CharTy);
500 QualType CharPtrTy = Ctx.getPointerType(Ctx.CharTy);
840 QualType PtrTy = Ctx.getPointerType(Ctx.CharTy);
872 assert(ER->getValueType() == C.getASTContext().CharTy &&
1055 QualType CharPtrTy = Ctx.getPointerType(Ctx.CharTy);
H A DBasicObjCFoundationChecks.cpp386 case kCFNumberCharType: T = Ctx.CharTy; break;
H A DMallocChecker.cpp731 SVal ZeroVal = C.getSValBuilder().makeZeroVal(Ctx.CharTy);
2003 SVal zeroVal = svalBuilder.makeZeroVal(svalBuilder.getContext().CharTy);
/external/clang/lib/Analysis/
H A DFormatString.cpp423 Res = C.CharTy;
429 Res = C.getPointerType(C.CharTy);
/external/clang/lib/CodeGen/
H A DCGCUDANV.cpp89 CharPtrTy = llvm::PointerType::getUnqual(Types.ConvertType(Ctx.CharTy));
H A DCodeGenModule.cpp2924 CharUnits Align = getContext().getTypeAlignInChars(getContext().CharTy);
3004 FieldTypes[1] = Context.getPointerType(Context.CharTy.withConst());
3045 CharUnits Align = getContext().getTypeAlignInChars(getContext().CharTy);
3234 getContext().getAlignOfGlobalVarInChars(getContext().CharTy);
H A DCGExpr.cpp3154 tbaa = CGM.getTBAAInfo(getContext().CharTy);
3193 LV.setTBAABaseType(mayAlias ? getContext().CharTy : base.getTBAABaseType());
3207 LV.setTBAAInfo(CGM.getTBAAInfo(getContext().CharTy));
H A DCGAtomic.cpp106 AtomicTy = C.getConstantArrayType(C.CharTy, Size, ArrayType::Normal,
H A DItaniumCXXABI.cpp3327 getContext().CharTy, getContext().UnsignedCharTy,
/external/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp205 newSuperR = MakeElementRegion(baseR, Ctx.CharTy, off.getQuantity());
H A DExprEngineCXX.cpp302 SVal ZeroVal = svalBuilder.makeZeroVal(getContext().CharTy);
/external/llvm/lib/Transforms/Scalar/
H A DStraightLineStrengthReduce.cpp657 Type *CharTy = Type::getInt8PtrTy(Basis.Ins->getContext(), AS); local
658 Reduced = Builder.CreateBitCast(Basis.Ins, CharTy);
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp325 NumberType = Context.CharTy;
519 if (Context.hasSameUnqualifiedType(PointeeType, Context.CharTy)) {
548 QualType ConstCharType = Context.CharTy.withConst();
583 ValueType = Context.CharTy;
672 QualType ConstCharType = Context.CharTy.withConst();
1074 StrTy = Context.CharTy;
H A DSemaExpr.cpp1553 QualType CharTy = Context.CharTy; local
1556 CharTy = Context.getWideCharType();
1561 CharTy = Context.Char16Ty;
1564 CharTy = Context.Char32Ty;
1567 CharTy = Context.UnsignedCharTy;
1570 QualType CharTyConst = CharTy;
1635 unsigned CharBits = Context.getIntWidth(CharTy);
1636 bool CharIsUnsigned = CharTy->isUnsignedIntegerType();
1639 TemplateArgument TypeArg(CharTy);
[all...]
H A DSemaInit.cpp2396 QualType CharTy = AT->getElementType(); local
2399 QualType PromotedCharTy = CharTy;
2400 if (CharTy->isPromotableIntegerType())
2401 PromotedCharTy = Context.getPromotedIntegerType(CharTy);
2417 if (CharTy != PromotedCharTy)
2418 Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast,
2439 if (CharTy != PromotedCharTy)
2440 Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast,
H A DSemaChecking.cpp2546 { 1, Context.getPointerType(Context.CharTy.withConst()) },
4276 ExprTy = S.Context.CharTy;
/external/clang/include/clang/AST/
H A DASTContext.h881 CanQualType CharTy; member in class:clang::ASTContext::DynTypedNodeList
1793 return getTypeSize(CharTy);
/external/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp605 Context->CharTy, llvm::APInt(32, Str.size() + 1), ArrayType::Normal,
2339 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2539 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2569 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
3048 FieldTypes[2] = Context->getPointerType(Context->CharTy);
7613 Context->getPointerType(Context->CharTy),
7625 Context->getPointerType(Context->CharTy),
H A DRewriteObjC.cpp499 Context->CharTy, llvm::APInt(32, Str.size() + 1), ArrayType::Normal,
2227 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2441 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2471 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2568 FieldTypes[2] = Context->getPointerType(Context->CharTy);
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp1131 if (Ctx.hasSameUnqualifiedType(PointeeType, Ctx.CharTy)) {
/external/clang/lib/AST/
H A DASTContext.cpp1005 InitBuiltinType(CharTy, BuiltinType::Char_S);
1007 InitBuiltinType(CharTy, BuiltinType::Char_U);
4643 return 2 + (getIntWidth(CharTy) << 3);
4843 FieldTypes[2] = getPointerType(CharTy.withConst());
6073 QualType T = Context->getPointerType(Context->CharTy);
8048 Type = Context.CharTy;
H A DExprConstant.cpp6766 QualType CharTy = E->getArg(0)->getType()->getPointeeType(); local
6769 if (!handleLValueToRValueConversion(Info, E, CharTy, String, Char) ||
6774 if (!HandleLValueArrayAdjustment(Info, E, String, CharTy, 1))
H A DASTImporter.cpp1493 return Importer.getToContext().CharTy;
1502 return Importer.getToContext().CharTy;

Completed in 705 milliseconds

12