Home
last modified time | relevance | path

Searched refs:TargetType (Results 1 – 13 of 13) sorted by relevance

/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
Dalloc_function.pass.cpp73 template <class TargetType, class FuncType, class AllocType>
79 TargetType target = &MemFunClass::foo; in test_MemFunClass()
82 assert(f.template target<TargetType>()); in test_MemFunClass()
83 assert(*f.template target<TargetType>() == target); in test_MemFunClass()
88 assert(f2.template target<TargetType>()); in test_MemFunClass()
89 assert(*f2.template target<TargetType>() == target); in test_MemFunClass()
Dalloc_F.pass.cpp63 template <class TargetType, class FuncType, class AllocType>
68 TargetType target = &MemFunClass::foo; in test_MemFunClass()
72 assert(f2.template target<TargetType>()); in test_MemFunClass()
73 assert(*f2.template target<TargetType>() == target); in test_MemFunClass()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DBasicValueFactory.h105 APSIntType TargetType(To); in Convert()
106 if (TargetType == APSIntType(From)) in Convert()
109 return getValue(TargetType.convert(From)); in Convert()
113 APSIntType TargetType = getAPSIntType(T); in Convert() local
114 if (TargetType == APSIntType(From)) in Convert()
117 return getValue(TargetType.convert(From)); in Convert()
/external/clang/lib/StaticAnalyzer/Core/
DStore.cpp295 SVal StoreManager::evalDynamicCast(SVal Base, QualType TargetType, in evalDynamicCast() argument
304 TargetType = TargetType->getPointeeType(); in evalDynamicCast()
305 assert(!TargetType.isNull()); in evalDynamicCast()
306 const CXXRecordDecl *TargetClass = TargetType->getAsCXXRecordDecl(); in evalDynamicCast()
307 if (!TargetClass && !TargetType->isVoidType()) in evalDynamicCast()
320 if (!TargetType->isVoidType() && MRClass->hasDefinition()) { in evalDynamicCast()
336 if (TargetType->isVoidType()) in evalDynamicCast()
/external/vogar/src/vogar/
DVogar.java548 private enum TargetType { enum in Vogar
558 TargetType(File defaultDeviceDir) { in TargetType() method in Vogar.TargetType
582 TargetType targetType; in run()
584 targetType = TargetType.SSH; in run()
586 targetType = TargetType.LOCAL; in run()
588 targetType = TargetType.ADB; in run()
/external/deqp/modules/glshared/
DglsShaderLibraryCase.cpp607 enum TargetType enum in deqp::gls::BeforeDrawValidator
615 BeforeDrawValidator (const glw::Functions& gl, glw::GLuint target, TargetType targetType);
625 const TargetType m_targetType;
631 BeforeDrawValidator::BeforeDrawValidator (const glw::Functions& gl, glw::GLuint target, TargetType in BeforeDrawValidator()
/external/clang/lib/Sema/
DSemaTemplateInstantiate.cpp1088 QualType TargetType = SemaRef.SubstType(NTTP->getType(), TemplateArgs, in TransformTemplateParmRefExpr() local
1091 if (TargetType.isNull()) in TransformTemplateParmRefExpr()
1094 return new (SemaRef.Context) SubstNonTypeTemplateParmPackExpr(TargetType, in TransformTemplateParmRefExpr()
DSemaOverload.cpp10118 const QualType& TargetType; member in __anon86d99bf30911::AddressOfFunctionResolver
10138 const QualType &TargetType, bool Complain) in AddressOfFunctionResolver() argument
10139 : S(S), SourceExpr(SourceExpr), TargetType(TargetType), in AddressOfFunctionResolver()
10142 !!TargetType->getAs<MemberPointerType>()), in AddressOfFunctionResolver()
10240 TargetFunctionType = S.ExtractUnqualifiedFunctionType(TargetType); in ExtractUnqualifiedFunctionTypeFromTargetType()
10325 (!S.getLangOpts().CPlusPlus && TargetType->isVoidPointerType())) { in AddMatchingNonTemplateFunction()
10457 << TargetType << OvlExpr->getSourceRange(); in ComplainIsInvalidFormOfPointerToMemberFunction()
10472 << OvlExpr->getName() << TargetType; in ComplainOfInvalidConversion()
10517 QualType TargetType, in ResolveAddressOfOverloadedFunction() argument
10523 AddressOfFunctionResolver Resolver(*this, AddressOfExpr, TargetType, in ResolveAddressOfOverloadedFunction()
DSemaTemplateDeduction.cpp4441 bool Complain, QualType TargetType) { in getMostSpecialized() argument
4501 if (!TargetType.isNull()) in getMostSpecialized()
4503 TargetType); in getMostSpecialized()
DSemaChecking.cpp7070 static void checkObjCArrayLiteral(Sema &S, QualType TargetType,
7072 static void checkObjCDictionaryLiteral(Sema &S, QualType TargetType,
7109 static void checkObjCArrayLiteral(Sema &S, QualType TargetType, in checkObjCArrayLiteral() argument
7114 const auto *TargetObjCPtr = TargetType->getAs<ObjCObjectPointerType>(); in checkObjCArrayLiteral()
7138 Sema &S, QualType TargetType, in checkObjCDictionaryLiteral() argument
7143 const auto *TargetObjCPtr = TargetType->getAs<ObjCObjectPointerType>(); in checkObjCDictionaryLiteral()
DSemaDeclCXX.cpp3323 QualType TargetType = SemaRef.BuildReferenceType( in CastForMoving() local
3327 TargetType, ExprLoc); in CastForMoving()
/external/clang/lib/AST/
DExprConstant.cpp3267 const CXXRecordDecl *TargetType = TargetQT->getAsCXXRecordDecl(); in HandleBaseToDerivedCast() local
3273 if (FinalType->getCanonicalDecl() != TargetType->getCanonicalDecl()) { in HandleBaseToDerivedCast()
3280 return CastToDerivedClass(Info, E, Result, TargetType, NewEntriesSize); in HandleBaseToDerivedCast()
/external/clang/include/clang/Sema/
DSema.h2499 QualType TargetType,
6440 bool Complain = true, QualType TargetType = QualType());