Home | History | Annotate | Download | only in url

Lines Matching refs:sources_

647     sources_.scheme = s;
651 bool IsSchemeOverridden() const { return sources_.scheme != NULL; }
655 sources_.username = s;
659 sources_.username = Placeholder();
662 bool IsUsernameOverridden() const { return sources_.username != NULL; }
666 sources_.password = s;
670 sources_.password = Placeholder();
673 bool IsPasswordOverridden() const { return sources_.password != NULL; }
677 sources_.host = s;
681 sources_.host = Placeholder();
684 bool IsHostOverridden() const { return sources_.host != NULL; }
688 sources_.port = s;
692 sources_.port = Placeholder();
695 bool IsPortOverridden() const { return sources_.port != NULL; }
699 sources_.path = s;
703 sources_.path = Placeholder();
706 bool IsPathOverridden() const { return sources_.path != NULL; }
710 sources_.query = s;
714 sources_.query = Placeholder();
717 bool IsQueryOverridden() const { return sources_.query != NULL; }
721 sources_.ref = s;
725 sources_.ref = Placeholder();
728 bool IsRefOverridden() const { return sources_.ref != NULL; }
732 const URLComponentSource<CHAR>& sources() const { return sources_; }
753 URLComponentSource<CHAR> sources_;