Lines Matching refs:urls
319 inline boost::urls::url appendUrlPieces( in appendUrlPieces()
320 boost::urls::url& url, const std::initializer_list<std::string_view> args) in appendUrlPieces()
335 inline void appendUrlPieces(boost::urls::url& url, const AV... args) in appendUrlPieces()
386 inline bool readUrlSegments(const boost::urls::url_view_base& url, in readUrlSegments()
389 const boost::urls::segments_view& urlSegments = url.segments(); in readUrlSegments()
396 boost::urls::segments_view::const_iterator it = urlSegments.begin(); in readUrlSegments()
397 boost::urls::segments_view::const_iterator end = urlSegments.end(); in readUrlSegments()
430 inline bool readUrlSegments(const boost::urls::url_view_base& url, in readUrlSegments()
436 inline boost::urls::url
437 replaceUrlSegment(const boost::urls::url_view_base& urlView, in replaceUrlSegment()
440 const boost::urls::segments_view& urlSegments = urlView.segments(); in replaceUrlSegment()
441 boost::urls::url url("/"); in replaceUrlSegment()
448 boost::urls::segments_view::iterator it = urlSegments.begin(); in replaceUrlSegment()
449 boost::urls::segments_view::iterator end = urlSegments.end(); in replaceUrlSegment()
466 inline void setProtocolDefaults(boost::urls::url& url, in setProtocolDefaults()
493 inline void setPortDefaults(boost::urls::url& url) in setPortDefaults()
522 template <std::derived_from<boost::urls::url_view_base> URL>