Searched refs:ToTy (Results 1 - 9 of 9) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DCastToStructChecker.cpp39 QualType ToTy = Ctx.getCanonicalType(CE->getType()); local
42 const PointerType *ToPTy = dyn_cast<PointerType>(ToTy.getTypePtr());
H A DCastSizeChecker.cpp35 QualType ToTy = Ctx.getCanonicalType(CE->getType()); local
36 const PointerType *ToPTy = dyn_cast<PointerType>(ToTy.getTypePtr());
/external/clang/include/clang/AST/
H A DDeclBase.h1558 // Specialization selected when ToTy is not a known subclass of DeclContext.
1559 template <class ToTy,
1560 bool IsKnownSubtype = ::llvm::is_base_of< DeclContext, ToTy>::value>
1562 static const ToTy *doit(const DeclContext *Val) {
1563 return static_cast<const ToTy*>(Decl::castFromDeclContext(Val));
1566 static ToTy *doit(DeclContext *Val) {
1567 return static_cast<ToTy*>(Decl::castFromDeclContext(Val));
1571 // Specialization selected when ToTy is a known subclass of DeclContext.
1572 template <class ToTy>
1573 struct cast_convert_decl_context<ToTy, tru
[all...]
/external/clang/include/clang/Sema/
H A DSemaFixItUtils.h53 const CanQualType ToTy,
58 /// type FromTy can be converted to ToTy. For example, one could check if
H A DOverload.h356 void *ToTy;
371 QualType getToType() const { return QualType::getFromOpaquePtr(ToTy); }
378 void setToType(QualType T) { ToTy = T.getAsOpaquePtr(); }
/external/clang/lib/Sema/
H A DSemaFixItUtils.cpp53 const QualType ToTy,
59 const CanQualType ToQTy = S.Context.getCanonicalType(ToTy);
51 tryToFixConversion(const Expr *FullExpr, const QualType FromTy, const QualType ToTy, Sema &S) argument
H A DSemaOverload.cpp8009 QualType ToTy = Conv.Bad.getToType(); local
8021 << ToTy << Name << I+1;
8029 CanQualType CToTy = S.Context.getCanonicalType(ToTy);
8101 << FromTy << ToTy << (unsigned) isObjectArgument << I+1;
8116 << FromTy << ToTy << (unsigned) isObjectArgument << I+1;
8124 if (const PointerType *ToPtrTy = ToTy->getAs<PointerType>()) {
8136 = ToTy->getAs<ObjCObjectPointerType>())
8143 } else if (const ReferenceType *ToRefTy = ToTy->getAs<ReferenceType>()) {
8149 } else if (ToTy->isLValueReferenceType() && !FromExpr->isLValue() &&
8150 ToTy
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h317 QualType ToTy; member in class:clang::ento::SymbolCast
321 SymExpr(CastSymbolKind), Operand(In), FromTy(From), ToTy(To) { }
323 QualType getType(ASTContext &C) const { return ToTy; }
338 Profile(ID, Operand, FromTy, ToTy);
/external/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp81 os << '(' << ToTy.getAsString() << ") (";

Completed in 448 milliseconds