Lines Matching refs:auth_

41 …GenericUri(Allocator* allocator = 0) : uri_(), base_(), scheme_(), auth_(), path_(), query_(), fra…  in uri_()
44 …ri, SizeType len, Allocator* allocator = 0) : uri_(), base_(), scheme_(), auth_(), path_(), query_… in uri_()
48 …GenericUri(const Ch* uri, Allocator* allocator = 0) : uri_(), base_(), scheme_(), auth_(), path_()… in uri_()
53 …Uri(const T& uri, Allocator* allocator = 0) : uri_(), base_(), scheme_(), auth_(), path_(), query_… in uri_()
59 …GenericUri(const String& uri, Allocator* allocator = 0) : uri_(), base_(), scheme_(), auth_(), pat… in uri_()
65 …GenericUri(const GenericUri& rhs) : uri_(), base_(), scheme_(), auth_(), path_(), query_(), frag_(… in GenericUri()
70 …GenericUri(const GenericUri& rhs, Allocator* allocator) : uri_(), base_(), scheme_(), auth_(), pat… in GenericUri()
86 auth_ = CopyPart(scheme_, rhs.scheme_, rhs.GetSchemeStringLength());
87 path_ = CopyPart(auth_, rhs.auth_, rhs.GetAuthStringLength());
109 const Ch* GetAuthString() const { return auth_; } in GetAuthString()
110 SizeType GetAuthStringLength() const { return auth_ == 0 ? 0 : internal::StrLen<Ch>(auth_); } in GetAuthStringLength()
164 resuri.auth_ = CopyPart(resuri.scheme_, scheme_, GetSchemeStringLength());
165 resuri.path_ = CopyPart(resuri.auth_, auth_, GetAuthStringLength());
171 … resuri.auth_ = CopyPart(resuri.scheme_, baseuri.scheme_, baseuri.GetSchemeStringLength());
174 resuri.path_ = CopyPart(resuri.auth_, auth_, GetAuthStringLength());
180 resuri.path_ = CopyPart(resuri.auth_, baseuri.auth_, baseuri.GetAuthStringLength());
245 auth_ = scheme_; in Allocate()
246 auth_++; in Allocate()
247 *auth_ = '\0'; in Allocate()
248 path_ = auth_; in Allocate()
304 auth_ = scheme_ + GetSchemeStringLength(); in Parse()
305 auth_++; in Parse()
306 *auth_ = '\0'; in Parse()
315 std::memcpy(auth_, &uri[start], (pos2 - start) * sizeof(Ch)); in Parse()
316 auth_[pos2 - start] = '\0'; in Parse()
321 path_ = auth_ + GetAuthStringLength(); in Parse()
378 std::memcpy(next, auth_, GetAuthStringLength() * sizeof(Ch)); in SetBase()
463 Ch* auth_; // Includes the // variable