Searched refs:fs_windows (Results 1 – 1 of 1) sorted by relevance
29 FileSpec fs_windows("F:\\bar", FileSpec::Style::windows); in TEST() local30 EXPECT_STREQ("F:\\bar", fs_windows.GetPath().c_str()); in TEST()33 EXPECT_STREQ("bar", fs_windows.GetFilename().GetCString()); in TEST()95 FileSpec fs_windows("F:\\bar", FileSpec::Style::windows); in TEST() local96 fs_windows.AppendPathComponent("baz"); in TEST()97 EXPECT_STREQ("F:\\bar\\baz", fs_windows.GetPath().c_str()); in TEST()100 EXPECT_STREQ("baz", fs_windows.GetFilename().GetCString()); in TEST()132 FileSpec fs_windows("baz", FileSpec::Style::windows); in TEST() local133 fs_windows.PrependPathComponent("F:\\bar"); in TEST()134 EXPECT_STREQ("F:\\bar\\baz", fs_windows.GetPath().c_str()); in TEST()[all …]