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

12

/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp278 return ast_ctx.CharTy;
311 return ast_ctx.getPointerType(ast_ctx.CharTy);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp493 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
533 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
574 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
843 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
H A DCStringChecker.cpp343 if (ER->getValueType() != C.getASTContext().CharTy)
388 QualType PtrTy = Ctx.getPointerType(Ctx.CharTy);
511 QualType CharPtrTy = Ctx.getPointerType(Ctx.CharTy);
886 QualType PtrTy = Ctx.getPointerType(Ctx.CharTy);
921 assert(ER->getValueType() == C.getASTContext().CharTy &&
1188 QualType CharPtrTy = Ctx.getPointerType(Ctx.CharTy);
H A DMallocChecker.cpp1000 SVal ZeroVal = C.getSValBuilder().makeZeroVal(Ctx.CharTy);
1189 SVal zeroVal = svalBuilder.makeZeroVal(svalBuilder.getContext().CharTy);
1219 SVal Init = SB.makeZeroVal(SB.getContext().CharTy);
2537 SVal zeroVal = svalBuilder.makeZeroVal(svalBuilder.getContext().CharTy);
H A DStdLibraryFunctionsChecker.cpp787 const QualType CharPtrTy = ACtx.getPointerType(ACtx.CharTy); // char *
792 ACtx.getPointerType(ACtx.CharTy.withConst()); // const char *
H A DBasicObjCFoundationChecks.cpp384 case kCFNumberCharType: T = Ctx.CharTy; break;
H A DCallAndMessageChecker.cpp221 const SVal PSV = State->getSVal(SValMemRegion, C.getASTContext().CharTy);
H A DGenericTaintChecker.cpp671 ValTy = C.getASTContext().CharTy;
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DASTDumper.cpp287 Dumper.Visit(*this, /*Ty=*/Context.getPointerType(Context.CharTy));
H A DFormatString.cpp512 Res = C.CharTy;
518 Res = C.getPointerType(C.CharTy);
H A DExprConstant.cpp8697 QualType CharTy = Result.Designator.getType(Info.Ctx);
8702 CharTy, E->getArg(0)->getType()->getPointeeType()));
8704 if (IsRawByte && CharTy->isIncompleteType()) {
8705 Info.FFDiag(E, diag::note_constexpr_ltor_incomplete_type) << CharTy;
8710 if (IsRawByte && !isOneByteCharacterType(CharTy)) {
8713 << CharTy;
8725 if (!APSInt::isSameValue(HandleIntToIntCast(Info, E, CharTy,
8754 if (!handleLValueToRValueConversion(Info, E, CharTy, Result, Char) ||
8761 if (!HandleLValueArrayAdjustment(Info, E, Result, CharTy, 1))
11349 QualType CharTy
[all...]
H A DASTContext.cpp1275 InitBuiltinType(CharTy, BuiltinType::Char_S);
1277 InitBuiltinType(CharTy, BuiltinType::Char_U);
6180 return 2 + (getIntWidth(CharTy) << 3);
6425 Fields[Count++] = { getPointerType(CharTy.withConst()), "str" };
6431 Fields[Count++] = { getPointerType(CharTy.withConst()), "_ptr" };
7780 QualType T = Context->getPointerType(Context->CharTy);
10070 Type = Context.CharTy;
10907 /*Pascal*/ false, getStringLiteralArrayType(CharTy, Key.size()),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DStraightLineStrengthReduce.cpp673 Type *CharTy = Type::getInt8PtrTy(Basis.Ins->getContext(), AS); local
674 Reduced = Builder.CreateBitCast(Basis.Ins, CharTy);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp218 newSuperR = MakeElementRegion(cast<SubRegion>(baseR), Ctx.CharTy,
H A DSimpleSValBuilder.cpp1205 elementType = getContext().CharTy;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp1775 QualType CharTy = Context.CharTy; local
1778 CharTy = Context.getWideCharType();
1782 CharTy = Context.Char8Ty;
1785 CharTy = Context.Char16Ty;
1788 CharTy = Context.Char32Ty;
1791 CharTy = Context.UnsignedCharTy;
1820 Context.getStringLiteralArrayType(CharTy, Literal.GetNumStringChars());
1871 unsigned CharBits = Context.getIntWidth(CharTy);
1872 bool CharIsUnsigned = CharTy
[all...]
H A DSemaExprObjC.cpp325 NumberType = Context.CharTy;
518 if (Context.hasSameUnqualifiedType(PointeeType, Context.CharTy)) {
572 QualType ConstCharType = Context.CharTy.withConst();
615 ValueType = Context.CharTy;
698 QualType ConstCharType = Context.CharTy.withConst();
1154 StrTy = Context.getStringLiteralArrayType(Context.CharTy, Str.size());
H A DSemaInit.cpp2879 QualType CharTy = AT->getElementType();
2882 QualType PromotedCharTy = CharTy;
2883 if (CharTy->isPromotableIntegerType())
2884 PromotedCharTy = Context.getPromotedIntegerType(CharTy);
2900 if (CharTy != PromotedCharTy)
2901 Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast,
2922 if (CharTy != PromotedCharTy)
2923 Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp1039 if (QualTypeMatchesBitSize(bit_size, ast, ast.CharTy))
1040 return GetType(ast.CharTy);
1052 if (QualTypeMatchesBitSize(bit_size, ast, ast.CharTy))
1053 return GetType(ast.CharTy);
1068 if (QualTypeMatchesBitSize(bit_size, ast, ast.CharTy))
1069 return GetType(ast.CharTy);
1120 if (QualTypeMatchesBitSize(bit_size, ast, ast.CharTy))
1121 return GetType(ast.CharTy);
1171 QualType char_type(ast.CharTy);
1901 return ast->CharTy
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCUDANV.cpp181 CharPtrTy = llvm::PointerType::getUnqual(Types.ConvertType(Ctx.CharTy));
H A DCGAtomic.cpp106 C.getConstantArrayType(C.CharTy, Size, nullptr, ArrayType::Normal,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp600 Context->CharTy, llvm::APInt(32, Str.size() + 1), nullptr,
2316 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2516 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2546 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
3015 FieldTypes[2] = Context->getPointerType(Context->CharTy);
7481 Context->getPointerType(Context->CharTy),
7493 Context->getPointerType(Context->CharTy), VK_RValue, OK_Ordinary,
H A DRewriteObjC.cpp500 Context->CharTy, llvm::APInt(32, Str.size() + 1), nullptr,
2230 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2443 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2473 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2570 FieldTypes[2] = Context->getPointerType(Context->CharTy);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h945 CanQualType CharTy; member in class:clang::ASTContext
2089 return getTypeSize(CharTy);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp1144 if (Ctx.hasSameUnqualifiedType(PointeeType, Ctx.CharTy)) {

Completed in 404 milliseconds

12