reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
39360   lldb::SymbolType arg3 ;
39499   lldb::SymbolType arg3 ;
51193   lldb::SymbolType result;
59285   lldb::SymbolType arg3 ;
include/llvm/ADT/DenseMap.h
  237     TheBucket = InsertIntoBucket(TheBucket, Key, std::forward<Ts>(Args)...);
  516                             ValueArgs &&... Values) {
  520     ::new (&TheBucket->getSecond()) ValueT(std::forward<ValueArgs>(Values)...);
tools/lldb/include/lldb/API/SBModule.h
  143                             lldb::SymbolType type = eSymbolTypeAny);
  146                                         lldb::SymbolType type = eSymbolTypeAny);
tools/lldb/include/lldb/API/SBSymbol.h
   50   SymbolType GetType();
tools/lldb/include/lldb/API/SBTarget.h
  802                                         lldb::SymbolType type = eSymbolTypeAny);
tools/lldb/include/lldb/Core/Module.h
  247       lldb::SymbolType symbol_type = lldb::eSymbolTypeAny);
  250                                   lldb::SymbolType symbol_type,
  254                                        lldb::SymbolType symbol_type,
tools/lldb/include/lldb/Core/ModuleList.h
  338                                   lldb::SymbolType symbol_type,
  342                                        lldb::SymbolType symbol_type,
tools/lldb/include/lldb/Symbol/ObjectFile.h
  643   static lldb::SymbolType GetSymbolTypeFromName(
  645       lldb::SymbolType symbol_type_hint = lldb::eSymbolTypeUndefined);
tools/lldb/include/lldb/Symbol/Symbol.h
   27   Symbol(uint32_t symID, llvm::StringRef name, lldb::SymbolType type,
   33   Symbol(uint32_t symID, const Mangled &mangled, lldb::SymbolType type,
   44   bool Compare(ConstString name, lldb::SymbolType type) const;
  135   lldb::SymbolType GetType() const { return (lldb::SymbolType)m_type; }
  137   void SetType(lldb::SymbolType type) { m_type = (lldb::SymbolType)type; }
tools/lldb/include/lldb/Symbol/Symtab.h
   50   Symbol *FindSymbolWithType(lldb::SymbolType symbol_type,
   59   uint32_t AppendSymbolIndexesWithType(lldb::SymbolType symbol_type,
   64       lldb::SymbolType symbol_type, uint32_t flags_value,
   67   uint32_t AppendSymbolIndexesWithType(lldb::SymbolType symbol_type,
   80                                               lldb::SymbolType symbol_type,
   83                                               lldb::SymbolType symbol_type,
   89                                           lldb::SymbolType symbol_type,
   92       const RegularExpression &regex, lldb::SymbolType symbol_type,
   96                                      lldb::SymbolType symbol_type,
   99                                      lldb::SymbolType symbol_type,
  104       const RegularExpression &regex, lldb::SymbolType symbol_type,
  108                                          lldb::SymbolType symbol_type,
tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h
   31 inline void stringify_append(llvm::raw_string_ostream &ss, const T &t) {
   47 inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head) {
   52 inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head,
   53                              const Tail &... tail) {
   59 template <typename... Ts> inline std::string stringify_args(const Ts &... ts) {
  208   template <typename T> void AddObjectForIndex(unsigned idx, T *object) {
  245   typedef typename std::conditional<std::is_trivially_copyable<T>::value, ValueTag, NotImplementedTag>::type type;
  277   template <typename T> T Deserialize() {
  281     return Read<T>(typename serializer_tag<T>::type());
  285   template <typename T> void HandleReplayResult(const T &t) {
  287     if (std::is_fundamental<T>::value)
  290     m_index_to_object.AddObjectForIndex(result, new T(t));
  310   template <typename T> T Read(NotImplementedTag) {
  315   template <typename T> T Read(ValueTag) {
  317     T t;
  318     std::memcpy(reinterpret_cast<char *>(&t), m_buffer.data(), sizeof(T));
  319     m_buffer = m_buffer.drop_front(sizeof(T));
  323   template <typename T> T Read(PointerTag) {
  329   template <typename T> T Read(ReferenceTag) {
  340   template <typename T> T Read(FundamentalPointerTag) {
  349   template <typename T> T Read(FundamentalReferenceTag) {
  375     static Result doit(Deserializer &deserializer,
  376                        Result (*f)(Deserialized..., Head, Tail...),
  376                        Result (*f)(Deserialized..., Head, Tail...),
  376                        Result (*f)(Deserialized..., Head, Tail...),
  378       return DeserializationHelper<Tail...>::
  379           template deserialized<Result, Deserialized..., Head>::doit(
  379           template deserialized<Result, Deserialized..., Head>::doit(
  380               deserializer, f, d..., deserializer.Deserialize<Head>());
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  388                        Deserialized... d) {
  404   DefaultReplayer(Result (*f)(Args...)) : Replayer(), f(f) {}
  404   DefaultReplayer(Result (*f)(Args...)) : Replayer(), f(f) {}
  408         DeserializationHelper<Args...>::template deserialized<Result>::doit(
  408         DeserializationHelper<Args...>::template deserialized<Result>::doit(
  412   Result (*f)(Args...);
  412   Result (*f)(Args...);
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  636   void Record(Serializer &serializer, Registry &registry, Result (*f)(FArgs...),
  636   void Record(Serializer &serializer, Registry &registry, Result (*f)(FArgs...),
  637               const RArgs &... args) {
  652             typename std::remove_reference<Result>::type>::type>::value) {
tools/lldb/source/API/SBModule.cpp
  317                                     lldb::SymbolType symbol_type) {
  334                                                 lldb::SymbolType symbol_type) {
tools/lldb/source/API/SBSymbol.cpp
  188 SymbolType SBSymbol::GetType() {
tools/lldb/source/API/SBTarget.cpp
 2278                                                 lldb::SymbolType symbol_type) {
tools/lldb/source/Core/Module.cpp
  862               SymbolType sym_type = sc.symbol->GetType();
  884               SymbolType sym_type = sc.symbol->GetType();
 1282                                                      SymbolType symbol_type) {
 1322                                           SymbolType symbol_type,
 1339                                              SymbolType symbol_type,
tools/lldb/source/Core/ModuleList.cpp
  427                                             SymbolType symbol_type,
  436     const RegularExpression &regex, lldb::SymbolType symbol_type,
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
  530                                                 lldb::SymbolType symbol_type,
  628                                                 lldb::SymbolType symbol_type) {
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
  245                                 ConstString name, lldb::SymbolType symbol_type,
  249                                 lldb::SymbolType symbol_type);
tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
  457                                       SymbolType symbol_type) const {
tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.h
   52                                 lldb::SymbolType symbol_type) const;
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
  379                            SymbolType sym_type = lldb::eSymbolTypeData) {
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
 1999     SymbolType symbol_type = eSymbolTypeInvalid;
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 1173     const SymbolType symbol_type = symbol->GetType();
 3708       SymbolType type = eSymbolTypeInvalid;
 5258             ConstString("_dyld_start"), SymbolType::eSymbolTypeCode,
tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp
  226 lldb::SymbolType ObjectFilePECOFF::MapSymbolType(uint16_t coff_symbol_type) {
tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h
   86   static lldb::SymbolType MapSymbolType(uint16_t coff_symbol_type);
tools/lldb/source/Symbol/ObjectFile.cpp
  395       const SymbolType symbol_type = symbol->GetType();
  619 lldb::SymbolType
  621                                   lldb::SymbolType symbol_type_hint) {
tools/lldb/source/Symbol/Symbol.cpp
   34 Symbol::Symbol(uint32_t symID, llvm::StringRef name, SymbolType type, bool external,
   49 Symbol::Symbol(uint32_t symID, const Mangled &mangled, SymbolType type,
  332 bool Symbol::Compare(ConstString name, SymbolType type) const {
tools/lldb/source/Symbol/Symtab.cpp
  296         const SymbolType type = symbol->GetType();
  443 uint32_t Symtab::AppendSymbolIndexesWithType(SymbolType symbol_type,
  462     SymbolType symbol_type, uint32_t flags_value,
  481 uint32_t Symtab::AppendSymbolIndexesWithType(SymbolType symbol_type,
  639                                            SymbolType symbol_type,
  657     ConstString symbol_name, SymbolType symbol_type,
  677     const RegularExpression &regexp, SymbolType symbol_type,
  698     const RegularExpression &regexp, SymbolType symbol_type,
  722 Symbol *Symtab::FindSymbolWithType(SymbolType symbol_type,
  743                                       SymbolType symbol_type,
  762     ConstString name, SymbolType symbol_type, Debug symbol_debug_type,
  782     const RegularExpression &regex, SymbolType symbol_type,
  792                                                SymbolType symbol_type,
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  595 		   is_null_pointer<_Tp>>::type
 1554     { typedef _Tp     type; };
 1558     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };
 1979     { typedef _Tp     type; };
 1988     : public __remove_pointer_helper<_Tp, typename remove_cv<_Tp>::type>
 1988     : public __remove_pointer_helper<_Tp, typename remove_cv<_Tp>::type>