Home
last modified time | relevance | path

Searched refs:ChildType (Results 1 – 10 of 10) sorted by relevance

/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/
H A DIPDBEnumChildren.h20 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()
H A DConcreteSymbolEnumerator.h22 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()
H A DPDBSymbolExe.h38 void dumpChildren(raw_ostream &OS, StringRef Label, PDB_SymType ChildType,
H A DPDBSymbolFunc.h24 template <typename ChildType> class IPDBEnumChildren;
H A DPDBSymbol.h46 template <typename ChildType> class ConcreteSymbolEnumerator;
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeSourceFile.h19 template <typename ChildType> class IPDBEnumChildren;
H A DNativeSession.h30 template <typename ChildType> class IPDBEnumChildren;
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.h32 template <typename ChildType> class ConcreteSymbolEnumerator;
/openbsd/gnu/llvm/llvm/lib/Target/BPF/
H A DBPFAbstractMemberAccess.cpp507 const MDNode *ChildType) { in IsValidAIChain() argument
508 if (!ChildType) in IsValidAIChain()
512 const DIType *CType = stripQualifiers(cast<DIType>(ChildType)); in IsValidAIChain()
/openbsd/gnu/llvm/clang/tools/libclang/
H A DCXType.cpp995 if (const RecordType *ChildType = I->getType()->getAs<RecordType>()) { in visitRecordForValidation() local
996 if (const RecordDecl *Child = ChildType->getDecl()) { in visitRecordForValidation()