Home | History | Annotate | Download | only in url

Lines Matching refs:ComponentMatches

97 bool ComponentMatches(const char* input,
327 EXPECT_TRUE(ComponentMatches(url, cases[i].scheme, parsed.scheme));
328 EXPECT_TRUE(ComponentMatches(url, cases[i].username, parsed.username));
329 EXPECT_TRUE(ComponentMatches(url, cases[i].password, parsed.password));
330 EXPECT_TRUE(ComponentMatches(url, cases[i].host, parsed.host));
332 EXPECT_TRUE(ComponentMatches(url, cases[i].path, parsed.path));
333 EXPECT_TRUE(ComponentMatches(url, cases[i].query, parsed.query));
334 EXPECT_TRUE(ComponentMatches(url, cases[i].ref, parsed.ref));
361 EXPECT_TRUE(ComponentMatches(url, path_cases[i].scheme, parsed.scheme))
363 EXPECT_TRUE(ComponentMatches(url, path_cases[i].path, parsed.GetContent()))
461 EXPECT_TRUE(ComponentMatches(url, file_cases[i].scheme, parsed.scheme))
465 EXPECT_TRUE(ComponentMatches(url, file_cases[i].username, parsed.username))
469 EXPECT_TRUE(ComponentMatches(url, file_cases[i].password, parsed.password))
473 EXPECT_TRUE(ComponentMatches(url, file_cases[i].host, parsed.host))
480 EXPECT_TRUE(ComponentMatches(url, file_cases[i].path, parsed.path))
484 EXPECT_TRUE(ComponentMatches(url, file_cases[i].query, parsed.query))
488 EXPECT_TRUE(ComponentMatches(url, file_cases[i].ref, parsed.ref))
522 EXPECT_TRUE(ComponentMatches(url, file_cases[i].expected, file_name));
625 EXPECT_TRUE(ComponentMatches(url, mailto_cases[i].scheme, parsed.scheme));
626 EXPECT_TRUE(ComponentMatches(url, mailto_cases[i].path, parsed.path));
627 EXPECT_TRUE(ComponentMatches(url, mailto_cases[i].query, parsed.query));
657 EXPECT_TRUE(ComponentMatches(url, "filesystem", parsed.scheme));
661 EXPECT_TRUE(ComponentMatches(url, parsecase->inner_scheme,
663 EXPECT_TRUE(ComponentMatches(url, parsecase->inner_username,
665 EXPECT_TRUE(ComponentMatches(url, parsecase->inner_password,
667 EXPECT_TRUE(ComponentMatches(url, parsecase->inner_host,
677 EXPECT_TRUE(ComponentMatches(url, parsecase->path, parsed.path));
678 EXPECT_TRUE(ComponentMatches(url, parsecase->query, parsed.query));
679 EXPECT_TRUE(ComponentMatches(url, parsecase->ref, parsed.ref));