Searched refs:HasQueryString (Results 1 – 3 of 3) sorted by relevance
137 TEST(UrlUtils, HasQueryString) { in TEST() argument138 EXPECT_FALSE(url::HasQueryString("http://server.com/path")); in TEST()139 EXPECT_FALSE(url::HasQueryString("http://server.com/path#blah?v=1")); in TEST()140 EXPECT_TRUE(url::HasQueryString("http://server.com/path?v=1#blah")); in TEST()141 EXPECT_TRUE(url::HasQueryString("http://server.com/path?v=1")); in TEST()142 EXPECT_FALSE(url::HasQueryString("")); in TEST()143 EXPECT_TRUE(url::HasQueryString("?ss")); in TEST()
80 BRILLO_EXPORT bool HasQueryString(const std::string& url);
160 bool url::HasQueryString(const std::string& url) { in HasQueryString() function in brillo::url