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

References

tools/lldb/unittests/Utility/CompletionRequestTest.cpp
  186   result.GetMatches(matches);
  193   result.GetMatches(matches);
  197   EXPECT_EQ(1U, matches.GetSize());
  199   EXPECT_STREQ("foo", matches.GetStringAtIndex(0));
  203   result.GetMatches(matches);
  207   EXPECT_EQ(1U, matches.GetSize());
  209   EXPECT_STREQ("foo", matches.GetStringAtIndex(0));
  214   result.GetMatches(matches);
  218   EXPECT_EQ(2U, matches.GetSize());
  220   EXPECT_STREQ("foo", matches.GetStringAtIndex(0));
  221   EXPECT_STREQ("bar", matches.GetStringAtIndex(1));
  224   result.GetMatches(matches);
  228   EXPECT_EQ(3U, matches.GetSize());
  230   EXPECT_STREQ("foo", matches.GetStringAtIndex(0));
  232   EXPECT_STREQ("bar", matches.GetStringAtIndex(1));
  234   EXPECT_STREQ("bar", matches.GetStringAtIndex(2));
  239   result.GetMatches(matches);
  243   EXPECT_EQ(4U, matches.GetSize());
  245   EXPECT_STREQ("foo", matches.GetStringAtIndex(0));
  247   EXPECT_STREQ("bar", matches.GetStringAtIndex(1));
  249   EXPECT_STREQ("bar", matches.GetStringAtIndex(2));
  251   EXPECT_STREQ("foo", matches.GetStringAtIndex(3));