/external/llvm/include/llvm/Support/ |
D | Casting.h | 118 template<typename To, typename FromTy> 119 struct isa_impl_wrap<To, FromTy, FromTy> { 121 static bool doit(const FromTy &Val) { 122 return isa_impl_cl<To,FromTy>::doit(Val); 174 template<class To, class FromTy> 175 struct cast_retty_wrap<To, FromTy, FromTy> { 177 typedef typename cast_retty_impl<To,FromTy>::ret_type ret_type; 198 template<class To, class FromTy> struct cast_convert_val<To,FromTy,FromTy> { 200 static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) { 201 typename cast_retty<To, FromTy>::ret_type Res2 [all …]
|
/external/clang/include/clang/AST/ |
D | DeclBase.h | 1821 template<class FromTy> 1822 struct cast_convert_val< ::clang::DeclContext, FromTy, FromTy> { 1823 static ::clang::DeclContext &doit(const FromTy &Val) { 1824 return *FromTy::castToDeclContext(&Val); 1828 template<class FromTy> 1829 struct cast_convert_val< ::clang::DeclContext, FromTy*, FromTy*> { 1830 static ::clang::DeclContext *doit(const FromTy *Val) { 1831 return FromTy::castToDeclContext(Val); 1835 template<class FromTy> 1836 struct cast_convert_val< const ::clang::DeclContext, FromTy, FromTy> { [all …]
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | SValBuilder.cpp | 373 QualType FromTy) { in shouldBeModeledWithNoOp() argument 374 while (Context.UnwrapSimilarPointerTypes(ToTy, FromTy)) { in shouldBeModeledWithNoOp() 377 FromTy = Context.getUnqualifiedArrayType(FromTy, Quals2); in shouldBeModeledWithNoOp() 392 if (ToTy != FromTy) in shouldBeModeledWithNoOp()
|
/external/clang/include/clang/Sema/ |
D | SemaFixItUtils.h | 52 typedef bool (*TypeComparisonFuncTy) (const CanQualType FromTy,
|
D | Overload.h | 340 void *FromTy; 357 QualType getFromType() const { return QualType::getFromOpaquePtr(FromTy); } in getFromType() 364 void setFromType(QualType T) { FromTy = T.getAsOpaquePtr(); } in setFromType()
|
D | Sema.h | 1184 TypeSourceInfo *GetTypeForDeclaratorCast(Declarator &D, QualType FromTy);
|
/external/clang/lib/Sema/ |
D | SemaFixItUtils.cpp | 52 const QualType FromTy, in tryToFixConversion() argument 58 const CanQualType FromQTy = S.Context.getCanonicalType(FromTy); in tryToFixConversion()
|
D | SemaOverload.cpp | 8706 QualType FromTy = Conv.Bad.getFromType(); in DiagnoseBadConversion() local 8709 if (FromTy == S.Context.OverloadTy) { in DiagnoseBadConversion() 8726 CanQualType CFromTy = S.Context.getCanonicalType(FromTy); in DiagnoseBadConversion() 8746 << FromTy in DiagnoseBadConversion() 8757 << FromTy in DiagnoseBadConversion() 8768 << FromTy in DiagnoseBadConversion() 8782 << FromTy << (CVR - 1); in DiagnoseBadConversion() 8787 << FromTy << (CVR - 1) << I+1; in DiagnoseBadConversion() 8799 << FromTy << ToTy << (unsigned) isObjectArgument << I+1; in DiagnoseBadConversion() 8807 QualType TempFromTy = FromTy.getNonReferenceType(); in DiagnoseBadConversion() [all …]
|
D | SemaType.cpp | 3426 TypeSourceInfo *Sema::GetTypeForDeclaratorCast(Declarator &D, QualType FromTy) { in GetTypeForDeclaratorCast() argument 3433 Qualifiers::ObjCLifetime ownership = Context.getInnerObjCOwnership(FromTy); in GetTypeForDeclaratorCast()
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | SymbolManager.h | 312 QualType FromTy; variable 318 SymExpr(CastSymbolKind), Operand(In), FromTy(From), ToTy(To) { } in SymbolCast() 335 Profile(ID, Operand, FromTy, ToTy); in Profile()
|
/external/llvm/include/llvm/IR/ |
D | DIBuilder.h | 140 MDDerivedType *createQualifiedType(unsigned Tag, MDType *FromTy);
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.cpp | 958 DIType FromTy = resolve(DTy->getBaseType()); in constructTypeDIE() local 959 if (FromTy) in constructTypeDIE() 960 addType(Buffer, FromTy); in constructTypeDIE()
|
/external/llvm/lib/IR/ |
D | DIBuilder.cpp | 227 MDDerivedType *DIBuilder::createQualifiedType(unsigned Tag, MDType *FromTy) { in createQualifiedType() argument 229 MDTypeRef::get(FromTy), 0, 0, 0, 0); in createQualifiedType()
|
/external/clang/lib/AST/ |
D | ASTImporter.cpp | 2728 QualType FromTy = D->getType(); in VisitFunctionDecl() local 2742 FromTy = Importer.getFromContext().getFunctionType( in VisitFunctionDecl() 2749 QualType T = Importer.Import(FromTy); in VisitFunctionDecl()
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 572 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit); in CreateQualifiedType() local 576 llvm::DIType DbgTy = DBuilder.createQualifiedType(Tag, FromTy); in CreateQualifiedType()
|