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

References

tools/lldb/include/lldb/Symbol/UnwindPlan.h
  210       bool operator==(const FAValue &rhs) const;
  212       bool operator!=(const FAValue &rhs) const { return !(*this == rhs); }
  344     FAValue &GetCFAValue() { return m_cfa_value; }
  346     FAValue &GetAFAValue() { return m_afa_value; }
  373     FAValue m_cfa_value;
  374     FAValue m_afa_value;
tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
 1632           UnwindPlan::Row::FAValue::unspecified) {
 1713           UnwindPlan::Row::FAValue::unspecified) {
 1790     lldb::RegisterKind row_register_kind, UnwindPlan::Row::FAValue &fa,
 1798   case UnwindPlan::Row::FAValue::isRegisterDereferenced: {
 1826   case UnwindPlan::Row::FAValue::isRegisterPlusOffset: {
 1849   case UnwindPlan::Row::FAValue::isDWARFExpression: {
 1873   case UnwindPlan::Row::FAValue::isRaSearch: {
tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
  190                           UnwindPlan::Row::FAValue &fa, lldb::addr_t &address);
tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp
   92           UnwindPlan::Row::FAValue::isRegisterPlusOffset ||
tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
  990     auto &cfa_value = row->GetCFAValue();
  991     auto &afa_value = row->GetAFAValue();
tools/lldb/source/Symbol/UnwindPlan.cpp
  169 operator==(const UnwindPlan::Row::FAValue &rhs) const {
  458           Row::FAValue::unspecified) {
tools/lldb/unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp
  136                                 const UnwindPlan::Row::FAValue &CFA) {
 2516   UnwindPlan::Row::FAValue esp_plus_4, esp_plus_8, ebp_plus_8;
 2550   UnwindPlan::Row::FAValue rsp_plus_8, rsp_plus_16, rbp_plus_16;
 2589   UnwindPlan::Row::FAValue esp_minus_4, esp_plus_0, esp_plus_4, esp_plus_8,
utils/unittest/googletest/include/gtest/gtest-printers.h
  205     ::std::basic_ostream<Char, CharTraits>& os, const T& x) {
  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
   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);