Home
last modified time | relevance | path

Searched refs:DerivedType (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
H A Dpr9167.cc12 typename DerivedType >
16 static DerivedType const DEFAULT_INSTANCE;
19 template<typename DATA, typename DerivedType>
20 const DerivedType A<DATA, DerivedType>::DEFAULT_INSTANCE;
/netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dpr9167.cc12 typename DerivedType >
16 static DerivedType const DEFAULT_INSTANCE;
19 template<typename DATA, typename DerivedType>
20 const DerivedType A<DATA, DerivedType>::DEFAULT_INSTANCE;
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp68 QualType DerivedType = E->getType(); in getBestDynamicClassType() local
69 if (const PointerType *PTy = DerivedType->getAs<PointerType>()) in getBestDynamicClassType()
70 DerivedType = PTy->getPointeeType(); in getBestDynamicClassType()
72 if (DerivedType->isDependentType()) in getBestDynamicClassType()
75 const RecordType *Ty = DerivedType->castAs<RecordType>(); in getBestDynamicClassType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCast.cpp1027 QualType DerivedType = in DiagnoseReinterpretUpDownCast() local
1032 << DerivedType << BaseType << !VirtualBase << int(ReinterpretKind) in DiagnoseReinterpretUpDownCast()
H A DSemaOpenMP.cpp18672 QualType DerivedType = in checkMapConflicts() local
18680 DerivedType = DerivedType.getNonReferenceType(); in checkMapConflicts()
18693 if (DerivedType->isAnyPointerType()) { in checkMapConflicts()
H A DSemaChecking.cpp14205 getDerivedToBaseAlignmentAndOffset(const CastExpr *CE, QualType DerivedType, in getDerivedToBaseAlignmentAndOffset() argument
14223 Ctx.getASTRecordLayout(DerivedType->getAsCXXRecordDecl()); in getDerivedToBaseAlignmentAndOffset()
14226 DerivedType = Base->getType(); in getDerivedToBaseAlignmentAndOffset()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DVerifier.cpp4987 auto DerivedType = Relocate.getDerivedPtr()->getType(); in visitIntrinsicCall() local
4988 Assert(ResultType->isVectorTy() == DerivedType->isVectorTy(), in visitIntrinsicCall()
4993 DerivedType->getPointerAddressSpace(), in visitIntrinsicCall()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DProgrammersManual.rst3303 All other types are subclasses of ``DerivedType``. Types can be named, but this
3328 Subclass of DerivedType that represents integer types of any bit width. Any
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/
H A DChangeLog-20054559 * testsuite/testsuite_tr1.h: Add class DerivedType.