Home | History | Annotate | Download | only in util

Lines Matching defs:base

38     std::string base = "hello";
39 appendPath(&base, "there");
40 EXPECT_EQ(mExpectedPath, base);
44 std::string base = "hello/";
45 appendPath(&base, "there");
46 EXPECT_EQ(mExpectedPath, base);
48 base = "hello";
49 appendPath(&base, "/there");
50 EXPECT_EQ(mExpectedPath, base);
52 base = "hello/";
53 appendPath(&base, "/there");
54 EXPECT_EQ(mExpectedPath, base);