Home | History | Annotate | Download | only in src

Lines Matching refs:sources_

641     sources_.scheme = s;
645 bool IsSchemeOverridden() const { return sources_.scheme != NULL; }
649 sources_.username = s;
653 sources_.username = Placeholder();
656 bool IsUsernameOverridden() const { return sources_.username != NULL; }
660 sources_.password = s;
664 sources_.password = Placeholder();
667 bool IsPasswordOverridden() const { return sources_.password != NULL; }
671 sources_.host = s;
675 sources_.host = Placeholder();
678 bool IsHostOverridden() const { return sources_.host != NULL; }
682 sources_.port = s;
686 sources_.port = Placeholder();
689 bool IsPortOverridden() const { return sources_.port != NULL; }
693 sources_.path = s;
697 sources_.path = Placeholder();
700 bool IsPathOverridden() const { return sources_.path != NULL; }
704 sources_.query = s;
708 sources_.query = Placeholder();
711 bool IsQueryOverridden() const { return sources_.query != NULL; }
715 sources_.ref = s;
719 sources_.ref = Placeholder();
722 bool IsRefOverridden() const { return sources_.ref != NULL; }
726 const URLComponentSource<CHAR>& sources() const { return sources_; }
747 URLComponentSource<CHAR> sources_;