Searched refs:PARSE_ERROR_INVALID_PORT (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/extensions/common/ |
D | url_pattern_unittest.cc | 60 { "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()
|
D | url_pattern.h | 74 PARSE_ERROR_INVALID_PORT, enumerator
|
D | url_pattern.cc | 236 return PARSE_ERROR_INVALID_PORT; in Parse()
|