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

References

tools/lldb/include/lldb/Utility/Scalar.h
  108   static Type GetBestTypeForBitSize(size_t bit_size, bool sign);
  143   void TruncOrExtendTo(Scalar::Type type, uint16_t bits);
  145   bool Promote(Scalar::Type type);
  151   static const char *GetValueTypeAsCString(Scalar::Type value_type);
  153   static Scalar::Type
  156   static Scalar::Type
  159   static Scalar::Type GetValueTypeForFloatWithByteSize(size_t byte_size);
  199   Scalar::Type GetType() const { return m_type; }
  283   Scalar::Type m_type;
tools/lldb/source/Expression/DWARFExpression.cpp
 2437       Scalar::Type type = Scalar::e_void;
tools/lldb/source/Utility/Scalar.cpp
   28 static Scalar::Type PromoteToMaxType(
   47   Scalar::Type lhs_type = lhs.GetType();
   48   Scalar::Type rhs_type = rhs.GetType();
  419 Scalar::Type Scalar::GetBestTypeForBitSize(size_t bit_size, bool sign) {
  439 void Scalar::TruncOrExtendTo(Scalar::Type type, uint16_t bits) {
  464 bool Scalar::Promote(Scalar::Type type) {
 1156 const char *Scalar::GetValueTypeAsCString(Scalar::Type type) {
 1194 Scalar::Type
 1205 Scalar::Type
 1216 Scalar::Type Scalar::GetValueTypeForFloatWithByteSize(size_t byte_size) {
tools/lldb/unittests/Expression/DWARFExpressionTest.cpp
  168   auto type = Scalar::GetBestTypeForBitSize(bits, sign);
tools/lldb/unittests/Utility/ScalarTest.cpp
  200   static Scalar::Type int_types[] = {
  208   static Scalar::Type float_types[] = {
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);