Searched refs:ChildType (Results 1 – 10 of 10) sorted by relevance
20 template <typename ChildType> class IPDBEnumChildren {22 using ChildTypePtr = std::unique_ptr<ChildType>;23 using MyType = IPDBEnumChildren<ChildType>;33 template <typename ChildType>34 class NullEnumerator : public IPDBEnumChildren<ChildType> {36 std::unique_ptr<ChildType> getChildAtIndex(uint32_t Index) const override { in getChildAtIndex()39 std::unique_ptr<ChildType> getNext() override { return nullptr; } in getNext()
22 template <typename ChildType>23 class ConcreteSymbolEnumerator : public IPDBEnumChildren<ChildType> {34 std::unique_ptr<ChildType> getChildAtIndex(uint32_t Index) const override { in getChildAtIndex()36 return unique_dyn_cast_or_null<ChildType>(Child); in getChildAtIndex()39 std::unique_ptr<ChildType> getNext() override { in getNext()40 return unique_dyn_cast_or_null<ChildType>(Enumerator->getNext()); in getNext()
38 void dumpChildren(raw_ostream &OS, StringRef Label, PDB_SymType ChildType,
24 template <typename ChildType> class IPDBEnumChildren;
46 template <typename ChildType> class ConcreteSymbolEnumerator;
19 template <typename ChildType> class IPDBEnumChildren;
30 template <typename ChildType> class IPDBEnumChildren;
32 template <typename ChildType> class ConcreteSymbolEnumerator;
507 const MDNode *ChildType) { in IsValidAIChain() argument508 if (!ChildType) in IsValidAIChain()512 const DIType *CType = stripQualifiers(cast<DIType>(ChildType)); in IsValidAIChain()
995 if (const RecordType *ChildType = I->getType()->getAs<RecordType>()) { in visitRecordForValidation() local996 if (const RecordDecl *Child = ChildType->getDecl()) { in visitRecordForValidation()