Lines Matching refs:Authority
27 MATCHER_P(Authority, A, "") { return arg.authority() == A; }
97 AllOf(Scheme("file"), Authority("auth"), Body("/x/y/z"))); in TEST()
100 AllOf(Scheme("file"), Authority("au=th"), Body("/(x)/y/\\ z"))); in TEST()
103 AllOf(Scheme("file"), Authority(""), Body("/(x)/y/\\ z"))); in TEST()
105 AllOf(Scheme("file"), Authority(""), Body("/x/y/z"))); in TEST()
107 AllOf(Scheme("file"), Authority(""), Body(""))); in TEST()
109 AllOf(Scheme("file"), Authority(""), Body("/x/y/z%2"))); in TEST()
111 AllOf(Scheme("http"), Authority("llvm.org"), Body(""))); in TEST()
113 AllOf(Scheme("http"), Authority("llvm.org"), Body("/"))); in TEST()
115 AllOf(Scheme("http"), Authority("llvm.org"), Body("/D"))); in TEST()
117 AllOf(Scheme("http"), Authority(""), Body("/"))); in TEST()
119 AllOf(Scheme("urn"), Authority(""), Body("isbn:0451450523"))); in TEST()
122 AllOf(Scheme("file"), Authority(""), Body("/c:/windows/system32/"))); in TEST()