Home | History | Annotate | Download | only in src

Lines Matching refs:sources_

642     sources_.scheme = s;
646 bool IsSchemeOverridden() const { return sources_.scheme != NULL; }
650 sources_.username = s;
654 sources_.username = Placeholder();
657 bool IsUsernameOverridden() const { return sources_.username != NULL; }
661 sources_.password = s;
665 sources_.password = Placeholder();
668 bool IsPasswordOverridden() const { return sources_.password != NULL; }
672 sources_.host = s;
676 sources_.host = Placeholder();
679 bool IsHostOverridden() const { return sources_.host != NULL; }
683 sources_.port = s;
687 sources_.port = Placeholder();
690 bool IsPortOverridden() const { return sources_.port != NULL; }
694 sources_.path = s;
698 sources_.path = Placeholder();
701 bool IsPathOverridden() const { return sources_.path != NULL; }
705 sources_.query = s;
709 sources_.query = Placeholder();
712 bool IsQueryOverridden() const { return sources_.query != NULL; }
716 sources_.ref = s;
720 sources_.ref = Placeholder();
723 bool IsRefOverridden() const { return sources_.ref != NULL; }
727 const URLComponentSource<CHAR>& sources() const { return sources_; }
748 URLComponentSource<CHAR> sources_;