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

References

tools/lldb/unittests/Utility/CompletionRequestTest.cpp
  123   result.GetMatches(matches);
  129   result.GetMatches(matches);
  132   EXPECT_EQ(1U, matches.GetSize());
  133   EXPECT_STREQ("foo", matches.GetStringAtIndex(0));
  136   result.GetMatches(matches);
  139   EXPECT_EQ(1U, matches.GetSize());
  140   EXPECT_STREQ("foo", matches.GetStringAtIndex(0));
  144   result.GetMatches(matches);
  147   EXPECT_EQ(2U, matches.GetSize());
  148   EXPECT_STREQ("foo", matches.GetStringAtIndex(0));
  149   EXPECT_STREQ("bar", matches.GetStringAtIndex(1));
  152   result.GetMatches(matches);
  155   EXPECT_EQ(2U, matches.GetSize());
  156   EXPECT_STREQ("foo", matches.GetStringAtIndex(0));
  157   EXPECT_STREQ("bar", matches.GetStringAtIndex(1));
  161   result.GetMatches(matches);
  164   EXPECT_EQ(2U, matches.GetSize());
  165   EXPECT_STREQ("foo", matches.GetStringAtIndex(0));
  166   EXPECT_STREQ("bar", matches.GetStringAtIndex(1));
  170   result.GetMatches(matches);
  173   EXPECT_EQ(3U, matches.GetSize());
  174   EXPECT_STREQ("foo", matches.GetStringAtIndex(0));
  175   EXPECT_STREQ("bar", matches.GetStringAtIndex(1));
  176   EXPECT_STREQ("foobar", matches.GetStringAtIndex(2));