Lines Matching defs:first
83 std::string first = "/test/tmp";
88 std::string path = KernelInterface::GetInstance().JoinPath(first, second);
89 EXPECT_EQ(path.compare(first + "/" + second), 0);
92 path = KernelInterface::GetInstance().JoinPath(first, empty);
93 EXPECT_EQ(path.compare(first + "/"), 0);
98 path = KernelInterface::GetInstance().JoinPath(first, second, third);
99 EXPECT_EQ(path.compare(first + "/" + second + "/" + third), 0);
102 path = KernelInterface::GetInstance().JoinPath(first, empty, third);
103 EXPECT_EQ(path.compare(first + "/" + third), 0);
104 path = KernelInterface::GetInstance().JoinPath(first, second, empty);
105 EXPECT_EQ(path.compare(first + "/" + second + "/"), 0);
111 path = KernelInterface::GetInstance().JoinPath(first, empty, empty);
112 EXPECT_EQ(path.compare(first + "/"), 0);