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

References

tools/lldb/unittests/Utility/FileSpecTest.cpp
  343   EXPECT_STREQ("/foo/bar/baz", fs_posix.GetCString());
  344   EXPECT_TRUE(fs_posix.RemoveLastPathComponent());
  345   EXPECT_STREQ("/foo/bar", fs_posix.GetCString());
  346   EXPECT_TRUE(fs_posix.RemoveLastPathComponent());
  347   EXPECT_STREQ("/foo", fs_posix.GetCString());
  348   EXPECT_TRUE(fs_posix.RemoveLastPathComponent());
  349   EXPECT_STREQ("/", fs_posix.GetCString());
  350   EXPECT_FALSE(fs_posix.RemoveLastPathComponent());
  351   EXPECT_STREQ("/", fs_posix.GetCString());