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