Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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;
/llvm-project-15.0.7/flang/test/Semantics/
H A Ddoconcurrent08.f9011 type, extends(Base) :: ChildType type
128 allocate(ChildType :: localVar)
129 allocate(ChildType :: localVar1)
177 allocate(ChildType:: polyVar)
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeSourceFile.h19 template <typename ChildType> class IPDBEnumChildren;
H A DNativeSession.h30 template <typename ChildType> class IPDBEnumChildren;
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-cpp/
H A Dmain.cpp22 typedef int ChildType; // should show as int typedef
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.h32 template <typename ChildType> class ConcreteSymbolEnumerator;
/llvm-project-15.0.7/polly/lib/Transform/
H A DScheduleOptimizer.cpp437 auto ChildType = isl_schedule_node_get_type(Node.child(0).get()); in isSimpleInnermostBand() local
439 if (ChildType == isl_schedule_node_leaf) in isSimpleInnermostBand()
442 if (ChildType != isl_schedule_node_sequence) in isSimpleInnermostBand()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCXType.cpp985 if (const RecordType *ChildType = I->getType()->getAs<RecordType>()) { in visitRecordForValidation() local
986 if (const RecordDecl *Child = ChildType->getDecl()) { in visitRecordForValidation()