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

Declarations

tools/lldb/include/lldb/Core/ModuleList.h
   45 class UUID;
tools/lldb/include/lldb/Symbol/LocateSymbolFile.h
   21 class UUID;
tools/lldb/include/lldb/Target/ModuleCache.h
   26 class UUID;
tools/lldb/include/lldb/lldb-forward.h
  264 class UUID;

References

tools/lldb/include/lldb/Core/Module.h
  639   const lldb_private::UUID &GetUUID();
  944   UUID m_uuid; ///< Each module is assumed to have a unique identifier to help
 1034   void SetUUID(const lldb_private::UUID &uuid);
tools/lldb/include/lldb/Core/ModuleList.h
  333   lldb::ModuleSP FindModule(const UUID &uuid) const;
tools/lldb/include/lldb/Core/ModuleSpec.h
   33   ModuleSpec(const FileSpec &file_spec, const UUID &uuid = UUID())
  115   UUID *GetUUIDPtr() { return (m_uuid.IsValid() ? &m_uuid : nullptr); }
  117   const UUID *GetUUIDPtr() const {
  121   UUID &GetUUID() { return m_uuid; }
  123   const UUID &GetUUID() const { return m_uuid; }
  292   UUID m_uuid;
tools/lldb/include/lldb/Interpreter/OptionValue.h
  299   UUID GetUUIDValue() const;
  301   bool SetUUIDValue(const UUID &uuid);
tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
   21   OptionValueUUID(const UUID &uuid) : OptionValue(), m_uuid(uuid) {}
   49   UUID &GetCurrentValue() { return m_uuid; }
   51   const UUID &GetCurrentValue() const { return m_uuid; }
   53   void SetCurrentValue(const UUID &value) { m_uuid = value; }
   59   UUID m_uuid;
tools/lldb/include/lldb/Symbol/LocateSymbolFile.h
   40                                          const lldb_private::UUID *uuid,
tools/lldb/include/lldb/Symbol/ObjectFile.h
  377   virtual UUID GetUUID() = 0;
  512   virtual bool GetCorefileMainBinaryInfo (lldb::addr_t &address, UUID &uuid) {
tools/lldb/include/lldb/Target/DynamicLoader.h
  250   virtual bool GetSharedCacheInformation(lldb::addr_t &base_address, UUID &uuid,
tools/lldb/include/lldb/Target/Platform.h
  290                                  const UUID *uuid_ptr, FileSpec &local_file);
tools/lldb/include/lldb/Target/RemoteAwarePlatform.h
   59   Status GetFileWithUUID(const FileSpec &platform_file, const UUID *uuid,
tools/lldb/include/lldb/Utility/UUID.h
   28   static UUID fromData(const void *bytes, uint32_t num_bytes) {
   36   static UUID fromData(llvm::ArrayRef<uint8_t> bytes) { return UUID(bytes); }
   40   static UUID fromOptionalData(const void *bytes, uint32_t num_bytes) {
   49   static UUID fromOptionalData(llvm::ArrayRef<uint8_t> bytes) {
  101   friend bool operator==(const UUID &LHS, const UUID &RHS) {
  101   friend bool operator==(const UUID &LHS, const UUID &RHS) {
  104   friend bool operator!=(const UUID &LHS, const UUID &RHS) {
  104   friend bool operator!=(const UUID &LHS, const UUID &RHS) {
  107   friend bool operator<(const UUID &LHS, const UUID &RHS) {
  107   friend bool operator<(const UUID &LHS, const UUID &RHS) {
  110   friend bool operator<=(const UUID &LHS, const UUID &RHS) {
  110   friend bool operator<=(const UUID &LHS, const UUID &RHS) {
  113   friend bool operator>(const UUID &LHS, const UUID &RHS) { return RHS < LHS; }
  113   friend bool operator>(const UUID &LHS, const UUID &RHS) { return RHS < LHS; }
  114   friend bool operator>=(const UUID &LHS, const UUID &RHS) {
  114   friend bool operator>=(const UUID &LHS, const UUID &RHS) {
tools/lldb/source/API/SBModuleSpec.cpp
  140   m_opaque_up->GetUUID() = UUID::fromOptionalData(uuid, uuid_len);
tools/lldb/source/Core/Module.cpp
  331 const lldb_private::UUID &Module::GetUUID() {
  346 void Module::SetUUID(const lldb_private::UUID &uuid) {
 1552   const UUID &uuid = module_ref.GetUUID();
tools/lldb/source/Core/ModuleList.cpp
  473 ModuleSP ModuleList::FindModule(const UUID &uuid) const {
  731   const UUID *uuid_ptr = module_spec.GetUUIDPtr();
tools/lldb/source/Interpreter/OptionValue.cpp
  439 UUID OptionValue::GetUUIDValue() const {
  446 bool OptionValue::SetUUIDValue(const UUID &uuid) {
tools/lldb/source/Interpreter/OptionValueUUID.cpp
   73   if (!UUID::DecodeUUIDBytesFromString(prefix, uuid_bytes).empty())
   80     const UUID &module_uuid = module_sp->GetUUID();
tools/lldb/source/Interpreter/Property.cpp
  199       UUID uuid;
tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
  436 lldb_private::UUID
  639 void DynamicLoaderDarwinKernel::KextImageInfo::SetUUID(const UUID &uuid) {
  643 UUID DynamicLoaderDarwinKernel::KextImageInfo::GetUUID() const {
 1273   std::vector<std::pair<std::string, UUID>> kexts_failed_to_load;
 1392       UUID uuid = UUID::fromOptionalData(extractor.GetData(&offset, 16), 16);
 1392       UUID uuid = UUID::fromOptionalData(extractor.GetData(&offset, 16), 16);
tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.h
  156     lldb_private::UUID GetUUID() const;
  158     void SetUUID(const lldb_private::UUID &uuid);
  206     lldb_private::UUID
  283   static lldb_private::UUID
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.h
  108     lldb_private::UUID uuid;
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.cpp
  458     lldb::addr_t &base_address, UUID &uuid, LazyBool &using_shared_cache,
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.h
   58       lldb::addr_t &base_address, lldb_private::UUID &uuid,
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp
  878         dylib_info.uuid = UUID::fromOptionalData(data.GetData(&offset, 16), 16);
 1047     lldb::addr_t &base_address, UUID &uuid, LazyBool &using_shared_cache,
 1086           uuid = UUID::fromOptionalData(shared_cache_uuid, 16);
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.h
   62       lldb::addr_t &base_address, lldb_private::UUID &uuid,
tools/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.cpp
   92 static UUID parseModuleId(llvm::Triple::OSType os, llvm::StringRef str) {
  121   return UUID::fromData(&data, os == llvm::Triple::Win32 ? sizeof(data)
  180   UUID ID = parseModuleId(OS, Str);
  206   UUID ID;
tools/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.h
   51   ModuleRecord(llvm::Triple::OSType OS, llvm::Triple::ArchType Arch, UUID ID)
   56   UUID ID;
   67   InfoRecord(UUID ID) : Record(Info), ID(std::move(ID)) {}
   69   UUID ID;
tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp
   22   UUID uuid;
   41   UUID uuid = Info && Info->ID ? Info->ID : Module->ID;
  113                                        UUID uuid)
tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h
   86   UUID GetUUID() override { return m_uuid; }
   96   UUID m_uuid;
  101                      lldb::offset_t length, ArchSpec arch, UUID uuid);
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  555           lldb_private::UUID &uuid = spec.GetUUID();
  600               uuid = UUID::fromData(&data, sizeof(data));
  606               uuid = UUID::fromData(data, sizeof(data));
  745 UUID ObjectFileELF::GetUUID() {
  767         m_uuid = UUID::fromData(data, sizeof(data));
  775         m_uuid = UUID::fromData(&data, sizeof(data));
  999                                            lldb_private::UUID &uuid) {
 1114               uuid = UUID::fromData(buf, note.n_descsz);
 1307                                            lldb_private::UUID &uuid,
 3220         UUID uuid;
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
  123   lldb_private::UUID GetUUID() override;
  196   lldb_private::UUID m_uuid;
  265                                      lldb_private::UUID &uuid,
  387                               lldb_private::UUID &uuid);
tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
  171 UUID ObjectFileJIT::GetUUID() {
tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
   78   lldb_private::UUID GetUUID() override;
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 2001 UUID ObjectFileMachO::GetSharedCacheUUID(FileSpec dyld_shared_cache,
 2004   UUID dsc_uuid;
 2017     dsc_uuid = UUID::fromOptionalData(
 4741 UUID ObjectFileMachO::GetUUID(const llvm::MachO::mach_header &header,
 4767         return UUID::fromOptionalData(uuid_bytes, 16);
 5009 UUID ObjectFileMachO::GetUUID() {
 5405 bool ObjectFileMachO::GetCorefileMainBinaryInfo(addr_t &address, UUID &uuid) {
 5445               uuid = UUID::fromOptionalData(raw_uuid, sizeof(uuid_t));
 5651                                                 addr_t &base_addr, UUID &uuid) {
 5684 void ObjectFileMachO::GetLLDBSharedCacheUUID(addr_t &base_addr, UUID &uuid) {
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h
   99   lldb_private::UUID GetUUID() override;
  115   bool GetCorefileMainBinaryInfo (lldb::addr_t &address, lldb_private::UUID &uuid) override;
  144   static lldb_private::UUID
  173                                  lldb_private::UUID &uuid);
  180   void GetLLDBSharedCacheUUID(lldb::addr_t &base_addir, lldb_private::UUID &uuid);
  189   lldb_private::UUID
tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp
   56 static UUID GetCoffUUID(llvm::object::COFFObjectFile *coff_obj) {
   82         return UUID::fromOptionalData(&info, sizeof(info));
   85       return UUID::fromOptionalData(&info.Guid, sizeof(info.Guid));
  183   lldb_private::UUID &uuid = module_spec.GetUUID();
  928 UUID ObjectFilePECOFF::GetUUID() {
tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h
  119   lldb_private::UUID GetUUID() override;
  304   lldb_private::UUID m_uuid;
tools/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.cpp
  228                                      const UUID *uuid_ptr,
  243                                 const lldb_private::UUID *uuid_ptr,
tools/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.h
   52                 const lldb_private::UUID *uuid_ptr,
   63                   const lldb_private::UUID *uuid_ptr,
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteDarwinDevice.cpp
  446                                                  const UUID *uuid_ptr,
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteDarwinDevice.h
   34                 const lldb_private::UUID *uuid_ptr,
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  193                                                 const UUID *uuid_ptr,
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
   53   Status GetFileWithUUID(const FileSpec &platform_file, const UUID *uuid_ptr,
tools/lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
  282   UUID objfile_binary_uuid;
  302     UUID uuid;
  330       UUID uuid;
tools/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
   51 UUID MinidumpParser::GetModuleUUID(const minidump::Module *module) {
   84       return UUID::fromOptionalData(pdb70_uuid, sizeof(*pdb70_uuid));
   85     return UUID::fromOptionalData(&pdb70_uuid->Uuid, sizeof(pdb70_uuid->Uuid));
   87     return UUID::fromOptionalData(cv_record);
tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
   59   UUID GetModuleUUID(const minidump::Module *module);
tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
   72   UUID GetUUID() override { return m_uuid; }
  118   UUID m_uuid;
  425     const auto uuid = m_minidump_parser->GetModuleUUID(module);
tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
   70   lldb_private::UUID uuid = obj_file->GetUUID();
tools/lldb/source/Symbol/LocateSymbolFile.cpp
   50                                           const lldb_private::UUID *uuid) {
  209   const UUID *uuid = module_spec.GetUUIDPtr();
  235   const UUID *uuid = module_spec.GetUUIDPtr();
  308   const UUID &module_uuid = module_spec.GetUUID();
  380                                          const lldb_private::UUID *uuid,
tools/lldb/source/Target/ModuleCache.cpp
   56   ModuleLock(const FileSpec &root_dir_spec, const UUID &uuid, Status &error);
   72 FileSpec GetModuleDirectory(const FileSpec &root_dir_spec, const UUID &uuid) {
   84   UUID module_uuid;
  152 ModuleLock::ModuleLock(const FileSpec &root_dir_spec, const UUID &uuid,
tools/lldb/source/Target/Platform.cpp
  168                                  const UUID *uuid_ptr, FileSpec &local_file) {
tools/lldb/source/Utility/UUID.cpp
  100       UUID::DecodeUUIDBytesFromString(p, bytes, num_uuid_bytes);
tools/lldb/unittests/Expression/DWARFExpressionTest.cpp
  109   UUID GetUUID() override { return {}; }
tools/lldb/unittests/ObjectFile/ELF/TestObjectFileELF.cpp
  171   UUID Uuid;
tools/lldb/unittests/Utility/UUIDTest.cpp
   16   UUID empty;
   17   UUID a16 = UUID::fromData("1234567890123456", 16);
   17   UUID a16 = UUID::fromData("1234567890123456", 16);
   18   UUID b16 = UUID::fromData("1234567890123457", 16);
   18   UUID b16 = UUID::fromData("1234567890123457", 16);
   19   UUID a20 = UUID::fromData("12345678901234567890", 20);
   19   UUID a20 = UUID::fromData("12345678901234567890", 20);
   20   UUID b20 = UUID::fromData("12345678900987654321", 20);
   20   UUID b20 = UUID::fromData("12345678900987654321", 20);
   38   UUID empty;
   40   UUID a16 = UUID::fromData(zeroes.data(), 16);
   40   UUID a16 = UUID::fromData(zeroes.data(), 16);
   41   UUID a20 = UUID::fromData(zeroes.data(), 20);
   41   UUID a20 = UUID::fromData(zeroes.data(), 20);
   42   UUID a16_0 = UUID::fromOptionalData(zeroes.data(), 16);
   42   UUID a16_0 = UUID::fromOptionalData(zeroes.data(), 16);
   43   UUID a20_0 = UUID::fromOptionalData(zeroes.data(), 20);
   43   UUID a20_0 = UUID::fromOptionalData(zeroes.data(), 20);
   44   UUID from_str;
   46   UUID opt_from_str;
   59   UUID u;
usr/include/c++/7.4.0/bits/alloc_traits.h
  474 	construct(allocator_type& __a, _Up* __p, _Args&&... __args)
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
   98     move(_Tp&& __t) noexcept
  198       _Tp __tmp = _GLIBCXX_MOVE(__a);
usr/include/c++/7.4.0/bits/shared_ptr.h
  202 	shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
  343 		   _Args&&... __args)
  688     allocate_shared(const _Alloc& __a, _Args&&... __args)
  703     make_shared(_Args&&... __args)
usr/include/c++/7.4.0/bits/shared_ptr_base.h
 1111         __shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
 1317 		     _Args&&... __args)
usr/include/c++/7.4.0/bits/stl_pair.h
  101 		      is_constructible<_T2, const _U2&>>::value;
  101 		      is_constructible<_T2, const _U2&>>::value;
  108 		      is_convertible<const _U2&, _T2>>::value;
  108 		      is_convertible<const _U2&, _T2>>::value;
  115 		      is_constructible<_T2, _U2&&>>::value;
  115 		      is_constructible<_T2, _U2&&>>::value;
  122 		      is_convertible<_U2&&, _T2>>::value;
  122 		      is_convertible<_U2&&, _T2>>::value;
  129 				  is_convertible<_U2&&, _T2>>;
  129 				  is_convertible<_U2&&, _T2>>;
  134 		      is_constructible<_T2, _U2&&>,
  134 		      is_constructible<_T2, _U2&&>,
  143 				  is_convertible<const _U2&, _T2>>;
  143 				  is_convertible<const _U2&, _T2>>;
  148 		      is_constructible<_T2, const _U2&&>,
  148 		      is_constructible<_T2, const _U2&&>,
  209     : private __pair_base<_T1, _T2>
  212       typedef _T2 second_type;   /// @c second_type is the second bound type
  215       _T2 second;                /// @c second is a copy of the second object
  252       using _PCCP = _PCC<true, _T1, _T2>;
  260       constexpr pair(const _T1& __a, const _T2& __b)
  269       explicit constexpr pair(const _T1& __a, const _T2& __b)
  283 			    _T1, _T2>;
  311        constexpr pair(_U1&& __x, const _T2& __y)
  318        explicit constexpr pair(_U1&& __x, const _T2& __y)
  325        constexpr pair(const _T1& __x, _U2&& __y)
  341 	constexpr pair(_U1&& __x, _U2&& __y)
  342 	: first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
  380 		       is_copy_assignable<_T2>>::value,
  391 		       is_move_assignable<_T2>>::value,
  403 				is_assignable<_T2&, const _U2&>>::value,
  403 				is_assignable<_T2&, const _U2&>>::value,
  405 	operator=(const pair<_U1, _U2>& __p)
  414 				is_assignable<_T2&, _U2&&>>::value,
  414 				is_assignable<_T2&, _U2&&>>::value,
  416 	operator=(pair<_U1, _U2>&& __p)
  454     operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
  454     operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
  495     swap(pair<_T1, _T2>& __x, pair<_T1, _T2>& __y)
  495     swap(pair<_T1, _T2>& __x, pair<_T1, _T2>& __y)
usr/include/c++/7.4.0/ext/new_allocator.h
  135 	construct(_Up* __p, _Args&&... __args)
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
  381     : public __is_pointer_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  631     : public __is_member_pointer_helper<typename remove_cv<_Tp>::type>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  798       typedef decltype(__test<_Tp>(0)) type;
  811                remove_all_extents<_Tp>::type>::type
  825     : public __is_destructible_safe<_Tp>::type
  984       typedef decltype(__test<_Tp, _Arg>(0)) type;
  989     : public __and_<is_destructible<_Tp>,
  990                     __is_direct_constructible_impl<_Tp, _Arg>>
 1072 			 __is_direct_constructible_ref_cast<_Tp, _Arg>,
 1073 			 __is_direct_constructible_new_safe<_Tp, _Arg>
 1079     : public __is_direct_constructible_new<_Tp, _Arg>::type
 1119     : public __is_direct_constructible<_Tp, _Arg>
 1130     : public __is_constructible_impl<_Tp, _Args...>::type
 1160     : public is_constructible<_Tp, _Tp&&>
 1160     : public is_constructible<_Tp, _Tp&&>
 1166     : public __is_move_constructible_impl<_Tp>
 1215     : public __and_<is_constructible<_Tp, _Args...>,
 1216 		    __is_nt_constructible_impl<_Tp, _Args...>>
 1246     : public is_nothrow_constructible<_Tp, _Tp&&>
 1246     : public is_nothrow_constructible<_Tp, _Tp&&>
 1252     : public __is_nothrow_move_constructible_impl<_Tp>
 1286     : public is_assignable<_Tp&, const _Tp&>
 1286     : public is_assignable<_Tp&, const _Tp&>
 1292     : public __is_copy_assignable_impl<_Tp>
 1304     : public is_assignable<_Tp&, _Tp&&>
 1304     : public is_assignable<_Tp&, _Tp&&>
 1310     : public __is_move_assignable_impl<_Tp>
 1352     : public is_nothrow_assignable<_Tp&, _Tp&&>
 1352     : public is_nothrow_assignable<_Tp&, _Tp&&>
 1358     : public __is_nt_move_assignable_impl<_Tp>
 1526 	static void __test_aux(_To1);
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1545     : public __is_convertible_helper<_From, _To>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1659     { typedef _Tp&&   type; };
 1955     { typedef _Tp     type; };
 2574       typename remove_reference<_Tp>::type>::type>::type
 2579     typename enable_if<__and_<__not_<__is_tuple_like<_Tp>>,
 2580 			      is_move_constructible<_Tp>,
 2581 			      is_move_assignable<_Tp>>::value>::type
 2582     swap(_Tp&, _Tp&)
 2582     swap(_Tp&, _Tp&)
 2609           noexcept(swap(std::declval<_Tp&>(), std::declval<_Tp&>()))
 2609           noexcept(swap(std::declval<_Tp&>(), std::declval<_Tp&>()))
 2629       typedef decltype(__test<_Tp>(0)) type;
 2639     : public __is_nothrow_swappable_impl<_Tp>::type
utils/unittest/googletest/include/gtest/gtest-printers.h
  140   static void PrintValue(const T& value, ::std::ostream* os) {
  205     ::std::basic_ostream<Char, CharTraits>& os, const T& x) {
  206   TypeWithoutFormatter<T,
  207       (internal::IsAProtocolMessage<T>::value ? kProtobuf :
  208        internal::ImplicitlyConvertible<const T&, internal::BiggestInt>::value ?
  223 void DefaultPrintNonContainerTo(const T& value, ::std::ostream* os) {
  276   static ::std::string Format(const ToPrint& value) {
  351     const T1& value, const T2& /* other_operand */) {
  351     const T1& value, const T2& /* other_operand */) {
  352   return FormatForComparison<T1, T2>::Format(value);
  352   return FormatForComparison<T1, T2>::Format(value);
  366 void UniversalPrint(const T& value, ::std::ostream* os);
  373                     const C& container, ::std::ostream* os) {
  439                     const T& value, ::std::ostream* os) {
  455 void PrintTo(const T& value, ::std::ostream* os) {
  478   DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
  699   static void Print(const T& value, ::std::ostream* os) {
  784   static void Print(const T& value, ::std::ostream* os) {
  856   typedef T T1;
  983   internal::UniversalTersePrinter<T>::Print(value, &ss);
utils/unittest/googletest/include/gtest/gtest.h
  273       const T& success,
  275           !internal::ImplicitlyConvertible<T, AssertionResult>::value>::type*
 1377                                    const T1& lhs, const T2& rhs) {
 1377                                    const T1& lhs, const T2& rhs) {
 1389                             const T1& lhs,
 1390                             const T2& rhs) {
 1419                                  const T1& lhs,
 1420                                  const T2& rhs) {
 1487                                    const T1& val1, const T2& val2,
 1487                                    const T1& val1, const T2& val2,
utils/unittest/googletest/include/gtest/internal/custom/raw-ostream.h
   29   static const T& printable(const T& V) { return V; }
   29   static const T& printable(const T& V) { return V; }
   35 auto printable(const T &V) -> decltype(StreamSwitch<T>::printable(V)) {
   35 auto printable(const T &V) -> decltype(StreamSwitch<T>::printable(V)) {
   37   return StreamSwitch<T>::printable(V);
utils/unittest/googletest/include/gtest/internal/gtest-internal.h
   94 ::std::string PrintToString(const T& value);
  830 struct AddReference { typedef T& type; };  // NOLINT
  863   static typename AddReference<From>::type MakeFrom();