Lines Matching defs:result
62 vector<string> result;
63 SplitStringUsing("", ':', &result);
64 EXPECT_EQ(0U, result.size());
68 vector<string> result;
69 SplitStringUsing(":hello:world:", ':', &result);
70 EXPECT_EQ(2U, result.size());
71 EXPECT_EQ("hello", result[0]);
72 EXPECT_EQ("world", result[1]);
76 vector<string> result;
77 SplitStringUsing("hello::world", ':', &result);
78 EXPECT_EQ(2U, result.size());
79 EXPECT_EQ("hello", result[0]);
80 EXPECT_EQ("world", result[1]);