Home
last modified time | relevance | path

Searched refs:PARSE_ERROR_INVALID_PORT (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/extensions/common/
Durl_pattern_unittest.cc60 { "http://foo:/", URLPattern::PARSE_ERROR_INVALID_PORT, "*" }, in TEST()
62 { "http://*.foo:/", URLPattern::PARSE_ERROR_INVALID_PORT, "*" }, in TEST()
63 { "http://foo:com/", URLPattern::PARSE_ERROR_INVALID_PORT, "*" }, in TEST()
64 { "http://foo:123456/", URLPattern::PARSE_ERROR_INVALID_PORT, "*" }, in TEST()
65 { "http://foo:80:80/monkey", URLPattern::PARSE_ERROR_INVALID_PORT, "*" }, in TEST()
67 { "chrome://foo:1234/bar", URLPattern::PARSE_ERROR_INVALID_PORT, "*" }, in TEST()
Durl_pattern.h74 PARSE_ERROR_INVALID_PORT, enumerator
Durl_pattern.cc236 return PARSE_ERROR_INVALID_PORT; in Parse()