Home
last modified time | relevance | path

Searched defs:scheme (Results 1 – 9 of 9) sorted by relevance

/commonlibrary/ets_utils/js_api_module/uri/src/
Djs_uri.ts22 scheme: string; property
89 get scheme(): string { method in URI
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
Dnormalizer.rs73 let mut scheme = Scheme::HTTPS; in format() localVariable
76 let mut scheme = Scheme::HTTP; in format() localVariable
Dproxy.rs150 pub(crate) scheme: Scheme, field
180 pub(crate) fn scheme(&self) -> &Scheme { in scheme() method
/commonlibrary/ets_utils/js_api_module/uri/
Djs_uri.h31 std::string scheme = ""; member
Djs_uri.cpp190 std::string scheme = data_.substr(0, pos); in AnalysisScheme() local
/commonlibrary/ets_utils/js_api_module/url/
Djs_url.h53 std::string scheme = ""; member
Djs_url.cpp166 bool IsSpecial(std::string scheme) in IsSpecial()
175 bool AnalysisScheme(std::string& input, std::string& scheme, in AnalysisScheme()
1084 std::string scheme = input.substr(0, pos); in InitOnlyInput() local
/commonlibrary/rust/ylong_http/ylong_http/src/h2/
Dpseudo.rs26 scheme: Option<String>, field
117 pub fn scheme(&self) -> Option<&str> { in scheme() method
/commonlibrary/rust/ylong_http/ylong_http/src/request/
Duri.rs76 scheme: Option<Scheme>, field
126 pub fn scheme(&self) -> Option<&Scheme> { in scheme() method
382 pub fn scheme<T>(mut self, scheme: T) -> Self in scheme() method
388 let scheme = scheme.try_into()?; in scheme() localVariable