| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | TypeList.cpp | 22 TypeList::TypeList() : m_types() {} in TypeList() function in TypeList 25 TypeList::~TypeList() = default; 27 void TypeList::Insert(const TypeSP &type_sp) { in Insert() 58 void TypeList::Clear() { m_types.clear(); } in Clear() 60 uint32_t TypeList::GetSize() const { return m_types.size(); } in GetSize() 66 TypeSP TypeList::GetTypeAtIndex(uint32_t idx) { in GetTypeAtIndex() 78 void TypeList::ForEach( in ForEach() 86 void TypeList::ForEach( in ForEach() 94 void TypeList::Dump(Stream *s, bool show_context) { in Dump() 115 void TypeList::RemoveMismatchedTypes(const std::string &type_scope, in RemoveMismatchedTypes() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | TypeList.h | 20 class TypeList { 23 TypeList(); 25 virtual ~TypeList(); 31 TypeList FindTypes(ConstString name); 66 TypeList(const TypeList &) = delete; 67 const TypeList &operator=(const TypeList &) = delete;
|
| H A D | SymbolFile.h | 254 lldb_private::TypeList &type_list) = 0; 306 virtual TypeList &GetTypeList() { return m_type_list; } in GetTypeList() 315 TypeList m_type_list;
|
| H A D | SymbolContext.h | 271 void SortTypeList(TypeMap &type_map, TypeList &type_list) const;
|
| /freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangOpenCLBuiltinEmitter.cpp | 212 std::vector<const Record *> TypeList; member in __anond2bca2700111::BuiltinNameEmitter 266 std::vector<Record *> &TypeList, 354 ExtractEnumTypes(Types, TypesSeen, TypeEnums, TypeList); in EmitDeclarations() 878 OS << " if (Ty.ID >= " << TypeList.size() << ") {"; in EmitQualTypeFinder() 974 Record *Type, TypeFlags &Flags, std::vector<Record *> &TypeList, in getTypeLists() argument 978 TypeList = Type->getValueAsDef("TypeList")->getValueAsListOfDefs("List"); in getTypeLists() 996 getTypeLists(PossibleGenType, Flags, TypeList, VectorList); in getTypeLists() 1002 TypeList.push_back(Type); in getTypeLists() 1015 std::vector<Record *> TypeList; in expandTypesInSignature() local 1019 getTypeLists(Arg, Flags, TypeList, VectorList); in expandTypesInSignature() [all …]
|
| /freebsd-13.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-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CodeGenTarget.cpp | 724 for (ListInit *TypeList : {RetTypes, ParamTypes}) { in CodeGenIntrinsic() 725 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) { in CodeGenIntrinsic() 726 Record *TyEl = TypeList->getElementAsRecord(i); in CodeGenIntrinsic() 741 ListInit *TypeList = RetTypes; in CodeGenIntrinsic() local 742 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) { in CodeGenIntrinsic() 743 Record *TyEl = TypeList->getElementAsRecord(i); in CodeGenIntrinsic() 772 TypeList = ParamTypes; in CodeGenIntrinsic() 773 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) { in CodeGenIntrinsic() 774 Record *TyEl = TypeList->getElementAsRecord(i); in CodeGenIntrinsic() 784 Twine("ParamTypes is ") + TypeList->getAsString()); in CodeGenIntrinsic()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.h | 45 using TypeList = std::vector<Type *>; 59 TypeList Types; 212 const TypeList &getTypes() const { return Types; } in getTypes()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Module.h | 56 class TypeList; variable 420 TypeList &types); 449 size_t max_matches, TypeList &type_list);
|
| H A D | ModuleList.h | 45 class TypeList; variable 350 TypeList &types) const;
|
| /freebsd-13.1/sys/contrib/dev/acpica/compiler/ |
| H A D | aslmethod.c | 671 UINT32 *TypeList) in MtProcessParameterTypeList() argument 680 TypeList[ParameterCount] = in MtProcessParameterTypeList() 688 TypeList[ParameterCount] = in MtProcessParameterTypeList()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchersInternal.h | 90 template <typename... Ts> struct TypeList {}; // Empty sentinel type list. struct 92 template <typename T1, typename... Ts> struct TypeList<T1, Ts...> { 100 using tail = TypeList<Ts...>; 104 using EmptyTypeList = TypeList<>; 172 TypeList<CXXBaseSpecifier, CXXCtorInitializer, 182 TypeList<CXXFunctionalCastExpr, ExplicitCastExpr>, T>::value> * = 1187 TypeList<Decl, Stmt, NestedNameSpecifier, NestedNameSpecifierLoc, QualType, 1214 TypeList<Decl, Stmt, NestedNameSpecifier, NestedNameSpecifierLoc, TypeLoc, 1219 TypeList<CallExpr, CXXConstructExpr, CXXNewExpr, DeclRefExpr, EnumType, 2282 TypeList<BinaryOperator, CXXOperatorCallExpr, [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/ |
| H A D | SymbolFileSymtab.h | 85 lldb_private::TypeList &type_list) override;
|
| H A D | SymbolFileSymtab.cpp | 56 lldb_private::TypeList &type_list) {} in GetTypes()
|
| /freebsd-13.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-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | OpenCLBuiltins.td | 215 class TypeList<list<Type> _Type> { 222 // For example, if TypeList = <int, float> and VectorList = <1, 2, 4>, then it 243 class GenericType<string _Ty, TypeList _TypeList, IntList _VectorList> : 246 TypeList TypeList = _TypeList; 247 // Possible vector sizes of the types in the TypeList. 377 def TLFloat : TypeList<[Float, Double, Half]>; 378 def TLSignedInts : TypeList<[Char, Short, Int, Long]>; 379 def TLUnsignedInts : TypeList<[UChar, UShort, UInt, ULong]>; 381 def TLIntLongFloats : TypeList<[Int, UInt, Long, ULong, Float, Double, Half]>; 422 TypeList<[Type]>, VecSizes>; [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 1003 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>, 1004 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>> 1008 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>, 1009 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>>
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | TypeFormat.cpp | 162 TypeList types; in FormatObject()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARF.h | 207 lldb_private::TypeList &type_list) override; 346 lldb_private::TypeList &GetTypeList() override;
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Marshallers.h | 429 template <class PolyMatcher, class TypeList> 431 std::vector<DynTypedMatcher> &Out, TypeList) { 432 Out.push_back(ast_matchers::internal::Matcher<typename TypeList::head>(Poly)); 433 mergePolyMatchers(Poly, Out, typename TypeList::tail());
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.h | 109 TypeList &type_list) override {} in GetTypes()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 495 std::vector<Type*> TypeList; member in __anonba06ddfc0411::BitcodeReader 1167 if (ID >= TypeList.size()) in getTypeByID() 1170 if (Type *Ty = TypeList[ID]) in getTypeByID() 1677 if (!TypeList.empty()) in parseTypeTableBody() 1719 TypeList.resize(Record[0]); in parseTypeTableBody() 1865 TypeList[NumRecords] = nullptr; in parseTypeTableBody() 1923 if (NumRecords >= TypeList.size()) in parseTypeTableBody() 1925 if (TypeList[NumRecords]) in parseTypeTableBody() 1929 TypeList[NumRecords++] = ResultTy; in parseTypeTableBody() 2419 if (Record[0] >= TypeList.size() || !TypeList[Record[0]]) in parseConstants() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTSource.cpp | 203 TypeList types; in FindCompleteType() 235 TypeList types; in FindCompleteType() 609 TypeList types; in FindExternalVisibleDecls() 1275 TypeList type_list; in FindObjCPropertyAndIvarDecls()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBCompileUnit.cpp | 147 TypeList type_list; in GetTypes()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | riscv_vector.td | 549 defvar TypeList = ["c","s","i","l","x","f","d"]; 675 foreach type = TypeList in { 762 foreach type = TypeList in { 791 foreach type = TypeList in { 861 foreach type = TypeList in { 935 foreach type = TypeList in { 1006 foreach type = TypeList in { 1083 foreach type = TypeList in { 1128 foreach type = TypeList in { 1173 foreach type = TypeList in {
|