Lines Matching refs:scheme
26 MATCHER_P(scheme, S, "") { return arg.scheme() == S; }
55 EXPECT_EQ(parseOrDie("s%2b://%3a/%3").scheme(), "s+"); in TEST()
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()