Home
last modified time | relevance | path

Searched refs:TypeList (Results 1 – 25 of 51) sorted by relevance

123

/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DTypeList.cpp23 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 DSymbolFile.cpp84 TypeList *SymbolFile::GetTypeList() { in GetTypeList()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DTypeList.h21 class TypeList {
26 TypeList();
28 virtual ~TypeList();
37 TypeList FindTypes(const ConstString &name);
70 DISALLOW_COPY_AND_ASSIGN(TypeList);
H A DSymbolVendor.h121 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 DSymbolFile.h209 virtual TypeList *GetTypeList();
212 lldb_private::TypeList &type_list) = 0;
H A DSymbolContext.h312 void SortTypeList(TypeMap &type_map, TypeList &type_list) const;
H A DType.h127 TypeList *GetTypeList();
457 void Append(const lldb_private::TypeList &type_list);
/freebsd-12.1/contrib/googletest/googletest/include/gtest/
H A Dgtest-typed-test.h195 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 DValueEnumerator.h47 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 DCodeGenTarget.cpp584 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 DModule.h84 class TypeList; variable
522 TypeList &types);
547 size_t max_matches, TypeList &type_list);
739 TypeList *GetTypeList();
H A DModuleList.h67 class TypeList; variable
453 TypeList &types) const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h152 lldb_private::TypeList *GetTypeList() override;
156 lldb_private::TypeList &type_list) override;
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1064 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 DMarshallers.h289 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 DSymbolFileSymtab.h87 lldb_private::TypeList &type_list) override;
H A DSymbolFileSymtab.cpp50 lldb_private::TypeList &type_list) { in GetTypes()
/freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp792 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 DSymbolFileBreakpad.h103 TypeList &type_list) override { in GetTypes()
/freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp454 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 Dgtest-type-util.h.pump293 // 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 DTypeFormat.cpp164 TypeList types; in FormatObject()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBCompileUnit.cpp150 TypeList type_list; in GetTypes()
H A DSBModule.cpp443 TypeList type_list; in FindTypes()
494 TypeList type_list; in GetTypes()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.h205 lldb_private::TypeList *GetTypeList() override;
209 lldb_private::TypeList &type_list) override;

123