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

References

tools/lldb/unittests/Utility/StringListTest.cpp
  144   s.AppendList(other);
  146   EXPECT_EQ(3U, s.GetSize());
  147   EXPECT_STREQ("foo", s.GetStringAtIndex(0));
  148   EXPECT_STREQ("", s.GetStringAtIndex(1));
  149   EXPECT_STREQ("bar", s.GetStringAtIndex(2));
  156   s.AppendList(empty);
  157   s.AppendList(other);
  158   EXPECT_EQ(6U, s.GetSize());
  159   EXPECT_STREQ("foo", s.GetStringAtIndex(0));
  160   EXPECT_STREQ("", s.GetStringAtIndex(1));
  161   EXPECT_STREQ("bar", s.GetStringAtIndex(2));
  162   EXPECT_STREQ("foo", s.GetStringAtIndex(3));
  163   EXPECT_STREQ("", s.GetStringAtIndex(4));
  164   EXPECT_STREQ("bar", s.GetStringAtIndex(5));