| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | TypeList.cpp | 23 TypeList::TypeList() : m_types() {} in TypeList() function in TypeList 28 TypeList::~TypeList() {} in ~TypeList() 30 void TypeList::Insert(const TypeSP &type_sp) { in Insert() 65 void TypeList::Clear() { m_types.clear(); } in Clear() 67 uint32_t TypeList::GetSize() const { return m_types.size(); } in GetSize() 73 TypeSP TypeList::GetTypeAtIndex(uint32_t idx) { in GetTypeAtIndex() 85 void TypeList::ForEach( in ForEach() 93 void TypeList::ForEach( in ForEach() 101 void TypeList::Dump(Stream *s, bool show_context) { in Dump() 121 void TypeList::RemoveMismatchedTypes(const std::string &type_scope, in RemoveMismatchedTypes() [all …]
|
| H A D | SymbolFile.cpp | 84 TypeList *SymbolFile::GetTypeList() { in GetTypeList()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | TypeList.h | 21 class TypeList { 26 TypeList(); 28 virtual ~TypeList(); 37 TypeList FindTypes(const ConstString &name); 70 DISALLOW_COPY_AND_ASSIGN(TypeList);
|
| H A D | SymbolVendor.h | 121 TypeList &GetTypeList() { return m_type_list; } in GetTypeList() 123 const TypeList &GetTypeList() const { return m_type_list; } in GetTypeList() 126 lldb::TypeClass type_mask, TypeList &type_list); 159 TypeList m_type_list; // Uniqued types for all parsers owned by this module
|
| H A D | SymbolFile.h | 209 virtual TypeList *GetTypeList(); 212 lldb_private::TypeList &type_list) = 0;
|
| H A D | SymbolContext.h | 312 void SortTypeList(TypeMap &type_map, TypeList &type_list) const;
|
| H A D | Type.h | 127 TypeList *GetTypeList(); 457 void Append(const lldb_private::TypeList &type_list);
|
| /freebsd-12.1/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest-typed-test.h | 195 typedef ::testing::internal::TypeList< Types >::type GTEST_TYPE_PARAMS_( \ 294 ::testing::internal::TypeList< Types >::type>:: \ 302 ::testing::internal::TypeList< Types >::type>())
|
| /freebsd-12.1/contrib/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.h | 47 using TypeList = std::vector<Type *>; 61 TypeList Types; 214 const TypeList &getTypes() const { return Types; } in getTypes()
|
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | CodeGenTarget.cpp | 584 ListInit *TypeList = R->getValueAsListInit("RetTypes"); in CodeGenIntrinsic() local 585 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) { in CodeGenIntrinsic() 586 Record *TyEl = TypeList->getElementAsRecord(i); in CodeGenIntrinsic() 618 TypeList = R->getValueAsListInit("ParamTypes"); in CodeGenIntrinsic() 619 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) { in CodeGenIntrinsic() 620 Record *TyEl = TypeList->getElementAsRecord(i); in CodeGenIntrinsic() 629 PrintFatalError(Twine("ParamTypes is ") + TypeList->getAsString()); in CodeGenIntrinsic()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | Module.h | 84 class TypeList; variable 522 TypeList &types); 547 size_t max_matches, TypeList &type_list); 739 TypeList *GetTypeList();
|
| H A D | ModuleList.h | 67 class TypeList; variable 453 TypeList &types) const;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.h | 152 lldb_private::TypeList *GetTypeList() override; 156 lldb_private::TypeList &type_list) override;
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchersInternal.h | 1064 template <typename... Ts> struct TypeList {}; // Empty sentinel type list. struct 1066 template <typename T1, typename... Ts> struct TypeList<T1, Ts...> { 1074 using tail = TypeList<Ts...>; 1078 using EmptyTypeList = TypeList<>; 1097 TypeList<Decl, Stmt, NestedNameSpecifier, NestedNameSpecifierLoc, QualType, 1112 TypeList<Decl, Stmt, NestedNameSpecifier, NestedNameSpecifierLoc, TypeLoc, 1117 TypeList<CallExpr, CXXConstructExpr, CXXNewExpr, DeclRefExpr, EnumType,
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Marshallers.h | 289 template <class PolyMatcher, class TypeList> 291 std::vector<DynTypedMatcher> &Out, TypeList) { 292 Out.push_back(ast_matchers::internal::Matcher<typename TypeList::head>(Poly)); 293 mergePolyMatchers(Poly, Out, typename TypeList::tail());
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/ |
| H A D | SymbolFileSymtab.h | 87 lldb_private::TypeList &type_list) override;
|
| H A D | SymbolFileSymtab.cpp | 50 lldb_private::TypeList &type_list) { in GetTypes()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 792 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>, 793 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>> 797 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>, 798 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>>
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.h | 103 TypeList &type_list) override { in GetTypes()
|
| /freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 454 std::vector<Type*> TypeList; member in __anond7564fed0411::BitcodeReader 1100 if (ID >= TypeList.size()) in getTypeByID() 1103 if (Type *Ty = TypeList[ID]) in getTypeByID() 1542 if (!TypeList.empty()) in parseTypeTableBody() 1578 TypeList.resize(Record[0]); in parseTypeTableBody() 1711 TypeList[NumRecords] = nullptr; in parseTypeTableBody() 1767 if (NumRecords >= TypeList.size()) in parseTypeTableBody() 1769 if (TypeList[NumRecords]) in parseTypeTableBody() 1773 TypeList[NumRecords++] = ResultTy; in parseTypeTableBody() 2196 if (Record[0] >= TypeList.size() || !TypeList[Record[0]]) in parseConstants() [all …]
|
| /freebsd-12.1/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-type-util.h.pump | 293 // The TypeList template makes it possible to use either a single type 298 struct TypeList { 305 struct TypeList<Types<$for i, [[T$i]]> > {
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/ |
| H A D | TypeFormat.cpp | 164 TypeList types; in FormatObject()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBCompileUnit.cpp | 150 TypeList type_list; in GetTypes()
|
| H A D | SBModule.cpp | 443 TypeList type_list; in FindTypes() 494 TypeList type_list; in GetTypes()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARF.h | 205 lldb_private::TypeList *GetTypeList() override; 209 lldb_private::TypeList &type_list) override;
|