/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 | 1874 template<class FromTy> 1875 struct cast_convert_val< ::clang::DeclContext, FromTy, FromTy> { 1876 static ::clang::DeclContext &doit(const FromTy &Val) { 1877 return *FromTy::castToDeclContext(&Val); 1881 template<class FromTy> 1882 struct cast_convert_val< ::clang::DeclContext, FromTy*, FromTy*> { 1883 static ::clang::DeclContext *doit(const FromTy *Val) { 1884 return FromTy::castToDeclContext(Val); 1888 template<class FromTy> 1889 struct cast_convert_val< const ::clang::DeclContext, FromTy, FromTy> { [all …]
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | SValBuilder.cpp | 401 QualType FromTy) { in shouldBeModeledWithNoOp() argument 402 while (Context.UnwrapSimilarPointerTypes(ToTy, FromTy)) { in shouldBeModeledWithNoOp() 405 FromTy = Context.getUnqualifiedArrayType(FromTy, Quals2); in shouldBeModeledWithNoOp() 420 if (ToTy != FromTy) in shouldBeModeledWithNoOp()
|
/external/clang/include/clang/Sema/ |
D | SemaFixItUtils.h | 52 typedef bool (*TypeComparisonFuncTy) (const CanQualType FromTy,
|
D | Overload.h | 343 void *FromTy; 360 QualType getFromType() const { return QualType::getFromOpaquePtr(FromTy); } in getFromType() 367 void setFromType(QualType T) { FromTy = T.getAsOpaquePtr(); } in setFromType()
|
D | Sema.h | 1274 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 | 8964 QualType FromTy = Conv.Bad.getFromType(); in DiagnoseBadConversion() local 8967 if (FromTy == S.Context.OverloadTy) { in DiagnoseBadConversion() 8984 CanQualType CFromTy = S.Context.getCanonicalType(FromTy); in DiagnoseBadConversion() 9004 << FromTy in DiagnoseBadConversion() 9015 << FromTy in DiagnoseBadConversion() 9026 << FromTy in DiagnoseBadConversion() 9040 << FromTy << (CVR - 1); in DiagnoseBadConversion() 9045 << FromTy << (CVR - 1) << I+1; in DiagnoseBadConversion() 9057 << FromTy << ToTy << (unsigned) isObjectArgument << I+1; in DiagnoseBadConversion() 9065 QualType TempFromTy = FromTy.getNonReferenceType(); in DiagnoseBadConversion() [all …]
|
D | SemaType.cpp | 4415 TypeSourceInfo *Sema::GetTypeForDeclaratorCast(Declarator &D, QualType FromTy) { in GetTypeForDeclaratorCast() argument 4422 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/Target/ |
D | TargetLowering.h | 1525 virtual bool isTruncateFree(Type *FromTy, Type *ToTy) const { in isTruncateFree() argument 1534 virtual bool allowTruncateForTailCall(Type *FromTy, Type *ToTy) const { in allowTruncateForTailCall() argument 1581 virtual bool isZExtFree(Type *FromTy, Type *ToTy) const { in isZExtFree() argument 1585 virtual bool isZExtFree(EVT FromTy, EVT ToTy) const { in isZExtFree() argument
|
/external/llvm/include/llvm/IR/ |
D | DIBuilder.h | 139 DIDerivedType *createQualifiedType(unsigned Tag, DIType *FromTy);
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.cpp | 846 const DIType *FromTy = resolve(DTy->getBaseType()); in constructTypeDIE() local 847 if (FromTy) in constructTypeDIE() 848 addType(Buffer, FromTy); in constructTypeDIE()
|
/external/llvm/lib/IR/ |
D | DIBuilder.cpp | 233 DIDerivedType *DIBuilder::createQualifiedType(unsigned Tag, DIType *FromTy) { in createQualifiedType() argument 235 DITypeRef::get(FromTy), 0, 0, 0, 0); in createQualifiedType()
|
/external/clang/lib/AST/ |
D | ASTImporter.cpp | 2798 QualType FromTy = D->getType(); in VisitFunctionDecl() local 2812 FromTy = Importer.getFromContext().getFunctionType( in VisitFunctionDecl() 2819 QualType T = Importer.Import(FromTy); in VisitFunctionDecl()
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 614 auto *FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit); in CreateQualifiedType() local 618 return DBuilder.createQualifiedType(Tag, FromTy); in CreateQualifiedType()
|