HomeSort by relevance Sort by last modified time
    Searched refs:HasQueryString (Results 1 - 3 of 3) sorted by null

  /external/libbrillo/brillo/
url_utils_unittest.cc 137 TEST(UrlUtils, HasQueryString) {
138 EXPECT_FALSE(url::HasQueryString("http://server.com/path"));
139 EXPECT_FALSE(url::HasQueryString("http://server.com/path#blah?v=1"));
140 EXPECT_TRUE(url::HasQueryString("http://server.com/path?v=1#blah"));
141 EXPECT_TRUE(url::HasQueryString("http://server.com/path?v=1"));
142 EXPECT_FALSE(url::HasQueryString(""));
143 EXPECT_TRUE(url::HasQueryString("?ss"));
url_utils.h 80 BRILLO_EXPORT bool HasQueryString(const std::string& url);
url_utils.cc 160 bool url::HasQueryString(const std::string& url) {

Completed in 135 milliseconds