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

References

tools/lldb/include/lldb/Utility/ArchSpec.h
  413   Core GetCore() const { return m_core; }
  515   Core m_core = kCore_invalid;
tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
 1548     const ArchSpec::Core system_core = arch.GetCore();
tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
  118   ArchSpec::Core core = process->GetTarget().GetArchitecture().GetCore();
tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
  543   const ArchSpec::Core system_core = system_arch.GetCore();
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleBridge.cpp
  141   const ArchSpec::Core system_core = system_arch.GetCore();
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleTV.cpp
  144   const ArchSpec::Core system_core = system_arch.GetCore();
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleWatch.cpp
  155   const ArchSpec::Core system_core = system_arch.GetCore();
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 1889                 ArchSpec::Core core = GetTarget().GetArchitecture().GetCore();
tools/lldb/source/Utility/ArchSpec.cpp
   27 static bool cores_match(const ArchSpec::Core core1, const ArchSpec::Core core2,
   27 static bool cores_match(const ArchSpec::Core core1, const ArchSpec::Core core2,
   38   ArchSpec::Core core;
  230   ArchSpec::Core core;
  513 static inline const CoreDefinition *FindCoreDefinition(ArchSpec::Core core) {
  535 FindArchDefinitionEntry(const ArchDefinition *def, ArchSpec::Core core) {
 1014   const ArchSpec::Core lhs_core = GetCore();
 1015   const ArchSpec::Core rhs_core = rhs.GetCore();
 1098 static bool cores_match(const ArchSpec::Core core1, const ArchSpec::Core core2,
 1098 static bool cores_match(const ArchSpec::Core core1, const ArchSpec::Core core2,
 1388   const ArchSpec::Core lhs_core = lhs.GetCore();
 1389   const ArchSpec::Core rhs_core = rhs.GetCore();
 1446     if (GetCore() == ArchSpec::Core::eCore_arm_armv7m ||
 1447         GetCore() == ArchSpec::Core::eCore_arm_armv7em ||
 1448         GetCore() == ArchSpec::Core::eCore_arm_armv6m ||
 1449         GetCore() == ArchSpec::Core::eCore_thumbv7m ||
 1450         GetCore() == ArchSpec::Core::eCore_thumbv7em ||
 1451         GetCore() == ArchSpec::Core::eCore_thumbv6m) {
utils/unittest/googletest/include/gtest/gtest-printers.h
  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
 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) {
utils/unittest/googletest/include/gtest/internal/custom/raw-ostream.h
   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);
   54   const T& V;
   55   friend std::ostream &operator<<(std::ostream &S, const RawStreamProxy<T> &V) {
   69   static const RawStreamProxy<T> printable(const T &V) { return {V}; }
   69   static const RawStreamProxy<T> printable(const T &V) { return {V}; }
utils/unittest/googletest/include/gtest/internal/gtest-internal.h
   94 ::std::string PrintToString(const T& value);