HomeSort by relevance Sort by last modified time
    Searched defs:DestType (Results 1 - 11 of 11) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypePropagation.cpp 503 QualType DestType = CE->getType();
506 const auto *DestObjectPtrType = DestType->getAs<ObjCObjectPointerType>();
545 // Mismatched types. If the DestType specialized, store it. Forget the
    [all...]
NullabilityChecker.cpp 813 QualType DestType = CE->getType();
816 if (!DestType->isAnyPointerType())
823 Nullability DestNullability = getNullabilityAnnotation(DestType);
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 642 QualType DestType = getType();
646 DestType = DestType->castAs<PointerType>()->getPointeeType();
649 if (DestType->isVoidType())
659 cast<CXXRecordDecl>(DestType->castAs<RecordType>()->getDecl());
    [all...]
ExprConstant.cpp     [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 50 CastOperation(Sema &S, QualType destType, ExprResult src)
51 : Self(S), SrcExpr(src), DestType(destType),
52 ResultType(destType.getNonLValueExprType(S.Context)),
53 ValueKind(Expr::getValueKindForType(destType)),
66 QualType DestType;
119 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange);
126 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) ==
157 QualType DestType, bool CStyle,
162 QualType DestType, bool CStyle
    [all...]
SemaExprObjC.cpp     [all...]
SemaInit.cpp     [all...]
SemaOverload.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 442 Type *DestType = Trunc.getType();
443 if (!TruncOp->hasOneUse() || !isa<IntegerType>(DestType))
456 unsigned DestWidth = DestType->getPrimitiveSizeInBits();
465 if (VecType->getElementType() != DestType) {
466 VecType = VectorType::get(DestType, NumVecElts);
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 336 llvm::Type *DestType = Int8PtrTy;
337 if (ArgValue->getType() != DestType)
339 Builder.CreateBitCast(ArgValue, DestType, ArgValue->getName().data());
    [all...]

Completed in 526 milliseconds