Lines Matching refs:empty
86 std::string empty = "";
90 path = KernelInterface::GetInstance().JoinPath(empty, second);
92 path = KernelInterface::GetInstance().JoinPath(first, empty);
94 path = KernelInterface::GetInstance().JoinPath(empty, empty);
95 EXPECT_EQ(path.compare(empty), 0);
100 path = KernelInterface::GetInstance().JoinPath(empty, second, third);
102 path = KernelInterface::GetInstance().JoinPath(first, empty, third);
104 path = KernelInterface::GetInstance().JoinPath(first, second, empty);
107 path = KernelInterface::GetInstance().JoinPath(empty, empty, third);
109 path = KernelInterface::GetInstance().JoinPath(empty, second, empty);
111 path = KernelInterface::GetInstance().JoinPath(first, empty, empty);
114 path = KernelInterface::GetInstance().JoinPath(empty, empty, empty);
115 EXPECT_EQ(path.compare(empty), 0);