Home | History | Annotate | Download | only in url

Lines Matching defs:sources_

645     sources_.scheme = s;
649 bool IsSchemeOverridden() const { return sources_.scheme != NULL; }
653 sources_.username = s;
657 sources_.username = Placeholder();
660 bool IsUsernameOverridden() const { return sources_.username != NULL; }
664 sources_.password = s;
668 sources_.password = Placeholder();
671 bool IsPasswordOverridden() const { return sources_.password != NULL; }
675 sources_.host = s;
679 sources_.host = Placeholder();
682 bool IsHostOverridden() const { return sources_.host != NULL; }
686 sources_.port = s;
690 sources_.port = Placeholder();
693 bool IsPortOverridden() const { return sources_.port != NULL; }
697 sources_.path = s;
701 sources_.path = Placeholder();
704 bool IsPathOverridden() const { return sources_.path != NULL; }
708 sources_.query = s;
712 sources_.query = Placeholder();
715 bool IsQueryOverridden() const { return sources_.query != NULL; }
719 sources_.ref = s;
723 sources_.ref = Placeholder();
726 bool IsRefOverridden() const { return sources_.ref != NULL; }
730 const URLComponentSource<CHAR>& sources() const { return sources_; }
751 URLComponentSource<CHAR> sources_;