Lines Matching refs:sources_
645 sources_.scheme = s; in SetScheme()
649 bool IsSchemeOverridden() const { return sources_.scheme != NULL; } in IsSchemeOverridden()
653 sources_.username = s; in SetUsername()
657 sources_.username = Placeholder(); in ClearUsername()
660 bool IsUsernameOverridden() const { return sources_.username != NULL; } in IsUsernameOverridden()
664 sources_.password = s; in SetPassword()
668 sources_.password = Placeholder(); in ClearPassword()
671 bool IsPasswordOverridden() const { return sources_.password != NULL; } in IsPasswordOverridden()
675 sources_.host = s; in SetHost()
679 sources_.host = Placeholder(); in ClearHost()
682 bool IsHostOverridden() const { return sources_.host != NULL; } in IsHostOverridden()
686 sources_.port = s; in SetPort()
690 sources_.port = Placeholder(); in ClearPort()
693 bool IsPortOverridden() const { return sources_.port != NULL; } in IsPortOverridden()
697 sources_.path = s; in SetPath()
701 sources_.path = Placeholder(); in ClearPath()
704 bool IsPathOverridden() const { return sources_.path != NULL; } in IsPathOverridden()
708 sources_.query = s; in SetQuery()
712 sources_.query = Placeholder(); in ClearQuery()
715 bool IsQueryOverridden() const { return sources_.query != NULL; } in IsQueryOverridden()
719 sources_.ref = s; in SetRef()
723 sources_.ref = Placeholder(); in ClearRef()
726 bool IsRefOverridden() const { return sources_.ref != NULL; } in IsRefOverridden()
730 const URLComponentSource<CHAR>& sources() const { return sources_; } in sources()
751 URLComponentSource<CHAR> sources_; variable