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

Declarations

tools/lldb/include/lldb/Utility/Scalar.h
  145   bool Promote(Scalar::Type type);

References

tools/lldb/source/Utility/Scalar.cpp
   53     if (temp_value.Promote(lhs_type)) // Promote it
   59     if (temp_value.Promote(rhs_type)) // Promote it
tools/lldb/unittests/Utility/ScalarTest.cpp
  216       EXPECT_TRUE(lhs.Promote(int_types[i])) << "int promotion #" << i;
  218       EXPECT_TRUE(rhs.Promote(float_types[j])) << "float promotion #" << j;
  220       EXPECT_TRUE(x.Promote(float_types[j]));
  228       EXPECT_TRUE(lhs.Promote(float_types[i])) << "float promotion #" << i;
  230       EXPECT_TRUE(rhs.Promote(float_types[j])) << "float promotion #" << j;
  232       EXPECT_TRUE(x.Promote(float_types[j]));