HomeSort by: relevance | last modified time | path
    Searched refs:CharTy (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTypeCache.h 45 llvm::IntegerType *CharTy;
CGExprConstant.cpp 61 llvm::Type *Ty = CGM.CharTy;
68 llvm::Type *Ty = llvm::ArrayType::get(CGM.CharTy, ZeroSize.getQuantity());
1072 llvm::Type *Ty = CGM.CharTy;
CGCUDANV.cpp 207 CharPtrTy = llvm::PointerType::getUnqual(Types.ConvertType(Ctx.CharTy));
CodeGenModule.cpp 126 CharTy =
5154 : Context.getTypeAlignInChars(Context.CharTy);
5386 getContext().getAlignOfGlobalVarInChars(getContext().CharTy);
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTDumper.cpp 289 Dumper.Visit(*this, /*Ty=*/Context.getPointerType(Context.CharTy));
FormatString.cpp 512 Res = C.CharTy;
518 Res = C.getPointerType(C.CharTy);
ExprConstant.cpp 9093 QualType CharTy = Result.Designator.getType(Info.Ctx);
9098 CharTy, E->getArg(0)->getType()->getPointeeType()));
9100 if (IsRawByte && CharTy->isIncompleteType()) {
9101 Info.FFDiag(E, diag::note_constexpr_ltor_incomplete_type) << CharTy;
9106 if (IsRawByte && !isOneByteCharacterType(CharTy)) {
9109 << CharTy;
9121 if (!APSInt::isSameValue(HandleIntToIntCast(Info, E, CharTy,
9150 if (!handleLValueToRValueConversion(Info, E, CharTy, Result, Char) ||
9157 if (!HandleLValueArrayAdjustment(Info, E, Result, CharTy, 1))
11820 QualType CharTy = E->getArg(0)->getType()->getPointeeType()
    [all...]
ASTContext.cpp 1286 InitBuiltinType(CharTy, BuiltinType::Char_S);
1288 InitBuiltinType(CharTy, BuiltinType::Char_U);
6316 return 2 + (getIntWidth(CharTy) << 3);
6561 Fields[Count++] = { getPointerType(CharTy.withConst()), "str" };
6567 Fields[Count++] = { getPointerType(CharTy.withConst()), "_ptr" };
7966 QualType T = Context->getPointerType(Context->CharTy);
10410 Type = Context.CharTy;
11239 /*Pascal*/ false, getStringLiteralArrayType(CharTy, Key.size()),
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 493 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)
CStringChecker.cpp 343 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);
StdLibraryFunctionsChecker.cpp 1051 const QualType CharTy = ACtx.CharTy;
1065 const QualType CharPtrTy = getPointerTy(CharTy); // char *
1068 getPointerTy(getConstTy(CharTy)); // const char *
MallocChecker.cpp 996 SVal ZeroVal = C.getSValBuilder().makeZeroVal(Ctx.CharTy);
1185 SVal zeroVal = svalBuilder.makeZeroVal(svalBuilder.getContext().CharTy);
1215 SVal Init = SB.makeZeroVal(SB.getContext().CharTy);
2474 SVal zeroVal = svalBuilder.makeZeroVal(svalBuilder.getContext().CharTy);
BasicObjCFoundationChecks.cpp 384 case kCFNumberCharType: T = Ctx.CharTy; break;
CallAndMessageChecker.cpp 221 const SVal PSV = State->getSVal(SValMemRegion, C.getASTContext().CharTy);
GenericTaintChecker.cpp 674 ValTy = C.getASTContext().CharTy;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
Store.cpp 218 newSuperR = MakeElementRegion(cast<SubRegion>(baseR), Ctx.CharTy,
SimpleSValBuilder.cpp 1085 elementType = getContext().CharTy;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 684 Type *CharTy = Type::getInt8PtrTy(Basis.Ins->getContext(), AS);
685 Reduced = Builder.CreateBitCast(Basis.Ins, CharTy);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 1801 QualType CharTy = Context.CharTy;
1804 CharTy = Context.getWideCharType();
1808 CharTy = Context.Char8Ty;
1811 CharTy = Context.Char16Ty;
1814 CharTy = Context.Char32Ty;
1817 CharTy = Context.UnsignedCharTy;
1846 Context.getStringLiteralArrayType(CharTy, Literal.GetNumStringChars());
1906 unsigned CharBits = Context.getIntWidth(CharTy);
1907 bool CharIsUnsigned = CharTy->isUnsignedIntegerType()
    [all...]
SemaExprObjC.cpp 325 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());
SemaInit.cpp 2905 QualType CharTy = AT->getElementType();
2908 QualType PromotedCharTy = CharTy;
2909 if (CharTy->isPromotableIntegerType())
2910 PromotedCharTy = Context.getPromotedIntegerType(CharTy);
2926 if (CharTy != PromotedCharTy)
2928 ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast, Init,
2949 if (CharTy != PromotedCharTy)
2951 ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast, Init,
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 601 Context->CharTy, llvm::APInt(32, Str.size() + 1), nullptr,
2318 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2518 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2548 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
3018 FieldTypes[2] = Context->getPointerType(Context->CharTy);
7488 Context->getPointerType(Context->CharTy),
7500 Context->getPointerType(Context->CharTy), VK_RValue, OK_Ordinary,
RewriteObjC.cpp 501 Context->CharTy, llvm::APInt(32, Str.size() + 1), nullptr,
2232 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2445 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2475 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2572 FieldTypes[2] = Context->getPointerType(Context->CharTy);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h 1003 CanQualType CharTy;
2169 return getTypeSize(CharTy);
  /src/external/apache2/llvm/dist/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 1147 if (Ctx.hasSameUnqualifiedType(PointeeType, Ctx.CharTy)) {

Completed in 138 milliseconds

1 2