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

References

tools/lldb/unittests/Utility/StringListTest.cpp
  137   other.AppendString("foo");
  138   other.AppendString("");
  139   other.AppendString("bar");
  144   s.AppendList(other);
  151   EXPECT_EQ(3U, other.GetSize());
  152   EXPECT_STREQ("foo", other.GetStringAtIndex(0));
  153   EXPECT_STREQ("", other.GetStringAtIndex(1));
  154   EXPECT_STREQ("bar", other.GetStringAtIndex(2));
  157   s.AppendList(other);
  166   EXPECT_EQ(3U, other.GetSize());
  167   EXPECT_STREQ("foo", other.GetStringAtIndex(0));
  168   EXPECT_STREQ("", other.GetStringAtIndex(1));
  169   EXPECT_STREQ("bar", other.GetStringAtIndex(2));