/openbsd/gnu/llvm/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() 114 void TypeList::RemoveMismatchedTypes(llvm::StringRef type_scope, in RemoveMismatchedTypes() [all …]
|
H A D | CMakeLists.txt | 35 TypeList.cpp
|
/openbsd/gnu/llvm/lldb/include/lldb/Symbol/ |
H A D | TypeList.h | 20 class TypeList { 23 TypeList(); 25 virtual ~TypeList(); 31 TypeList FindTypes(ConstString name); 67 TypeList(const TypeList &) = delete; 68 const TypeList &operator=(const TypeList &) = delete;
|
H A D | SymbolFile.h | 310 lldb_private::TypeList &type_list) = 0; 538 virtual TypeList &GetTypeList() { return m_type_list; } in GetTypeList() 546 TypeList m_type_list;
|
H A D | SymbolContext.h | 271 void SortTypeList(TypeMap &type_map, TypeList &type_list) const;
|
/openbsd/gnu/llvm/clang/utils/TableGen/ |
H A D | ClangOpenCLBuiltinEmitter.cpp | 213 std::vector<const Record *> TypeList; member in __anon305c53690111::BuiltinNameEmitter 266 std::vector<Record *> &TypeList, 388 ExtractEnumTypes(Types, TypesSeen, TypeEnums, TypeList); in EmitDeclarations() 933 OS << " if (Ty.ID >= " << TypeList.size() << ") {"; in EmitQualTypeFinder() 1029 Record *Type, TypeFlags &Flags, std::vector<Record *> &TypeList, in getTypeLists() argument 1033 TypeList = Type->getValueAsDef("TypeList")->getValueAsListOfDefs("List"); in getTypeLists() 1051 getTypeLists(PossibleGenType, Flags, TypeList, VectorList); in getTypeLists() 1057 TypeList.push_back(Type); in getTypeLists() 1070 std::vector<Record *> TypeList; in expandTypesInSignature() local 1074 getTypeLists(Arg, Flags, TypeList, VectorList); in expandTypesInSignature() [all …]
|
/openbsd/gnu/llvm/llvm/utils/TableGen/ |
H A D | CodeGenTarget.cpp | 735 for (ListInit *TypeList : {RetTypes, ParamTypes}) { in CodeGenIntrinsic() 736 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) { in CodeGenIntrinsic() 737 Record *TyEl = TypeList->getElementAsRecord(i); in CodeGenIntrinsic() 752 ListInit *TypeList = RetTypes; in CodeGenIntrinsic() local 753 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) { in CodeGenIntrinsic() 754 Record *TyEl = TypeList->getElementAsRecord(i); in CodeGenIntrinsic() 783 TypeList = ParamTypes; in CodeGenIntrinsic() 784 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) { in CodeGenIntrinsic() 785 Record *TyEl = TypeList->getElementAsRecord(i); in CodeGenIntrinsic() 795 Twine("ParamTypes is ") + TypeList->getAsString()); in CodeGenIntrinsic()
|
/openbsd/gnu/llvm/llvm/lib/Target/DirectX/DXILWriter/ |
H A D | DXILValueEnumerator.h | 48 using TypeList = std::vector<Type *>; 62 TypeList Types; 212 const TypeList &getTypes() const { return Types; } in getTypes()
|
/openbsd/gnu/llvm/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()
|
/openbsd/gnu/usr.bin/clang/liblldbSymbol/ |
H A D | Makefile | 34 TypeList.cpp \
|
/openbsd/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Symbol/ |
H A D | BUILD.gn | 40 "TypeList.cpp",
|
/openbsd/gnu/llvm/lldb/include/lldb/Core/ |
H A D | ModuleList.h | 45 class TypeList; variable 362 TypeList &types) const;
|
H A D | Module.h | 59 class TypeList; variable 452 TypeList &types); 482 size_t max_matches, TypeList &type_list);
|
/openbsd/gnu/llvm/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchersInternal.h | 89 template <typename... Ts> struct TypeList {}; // Empty sentinel type list. struct 91 template <typename T1, typename... Ts> struct TypeList<T1, Ts...> { 99 using tail = TypeList<Ts...>; 103 using EmptyTypeList = TypeList<>; 168 TypeList<CXXBaseSpecifier, CXXCtorInitializer, 178 TypeList<CXXFunctionalCastExpr, ExplicitCastExpr>, T>::value> * = 1184 TypeList<Decl, Stmt, NestedNameSpecifier, NestedNameSpecifierLoc, QualType, 1211 TypeList<Decl, Stmt, NestedNameSpecifier, NestedNameSpecifierLoc, TypeLoc, 1216 TypeList<CallExpr, CXXConstructExpr, CXXNewExpr, DeclRefExpr, EnumType, 2250 TypeList<BinaryOperator, CXXOperatorCallExpr, [all …]
|
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/Symtab/ |
H A D | SymbolFileSymtab.h | 86 lldb_private::TypeList &type_list) override;
|
H A D | SymbolFileSymtab.cpp | 52 lldb_private::TypeList &type_list) {} in GetTypes()
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | OpenCLBuiltins.td | 265 class TypeList<list<Type> _Type> { 272 // For example, if TypeList = <int, float> and VectorList = <1, 2, 4>, then it 293 class GenericType<string _Ty, TypeList _TypeList, IntList _VectorList> : 296 TypeList TypeList = _TypeList; 297 // Possible vector sizes of the types in the TypeList. 445 def TLFloat : TypeList<[Float, Double, Half]>; 446 def TLSignedInts : TypeList<[Char, Short, Int, Long]>; 447 def TLUnsignedInts : TypeList<[UChar, UShort, UInt, ULong]>; 449 def TLIntLongFloats : TypeList<[Int, UInt, Long, ULong, Float, Double, Half]>; 490 TypeList<[Type]>, VecSizes>; [all …]
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBCompileUnit.cpp | 150 TypeList type_list; in GetTypes()
|
H A D | SBModule.cpp | 487 TypeList type_list; in FindTypes() 542 TypeList type_list; in GetTypes()
|
/openbsd/gnu/llvm/clang/lib/ASTMatchers/ |
H A D | ASTMatchersInternal.cpp | 1019 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr>, 1020 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr>> 1024 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr>, 1025 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr>>
|
/openbsd/gnu/llvm/lldb/source/DataFormatters/ |
H A D | TypeFormat.cpp | 164 TypeList types; in FormatObject()
|
/openbsd/gnu/llvm/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 578 std::vector<Type *> TypeList; member in __anonbda00ad50411::BitcodeReader 1328 if (ID >= TypeList.size()) in getTypeByID() 1331 if (Type *Ty = TypeList[ID]) in getTypeByID() 1351 if (ID >= TypeList.size()) in getPtrElementTypeByID() 1354 Type *Ty = TypeList[ID]; in getPtrElementTypeByID() 1395 TypeList.push_back(Ty); in getVirtualTypeID() 2259 if (!TypeList.empty()) in parseTypeTableBody() 2302 TypeList.resize(Record[0]); in parseTypeTableBody() 2547 if (TypeList[NumRecords]) in parseTypeTableBody() 3013 if (Record[0] >= TypeList.size() || !TypeList[Record[0]]) in parseConstants() [all …]
|
/openbsd/gnu/llvm/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());
|
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | SymbolFileDWARF.h | 212 lldb_private::TypeList &type_list) override; 373 lldb_private::TypeList &GetTypeList() override;
|
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/Breakpad/ |
H A D | SymbolFileBreakpad.h | 112 TypeList &type_list) override {} in GetTypes()
|