Home | History | Annotate | Download | only in base

Lines Matching full:parts

809 static STR JoinStringT(const std::vector<STR>& parts,
811 if (parts.empty())
814 STR result(parts[0]);
815 typename std::vector<STR>::const_iterator iter = parts.begin();
818 for (; iter != parts.end(); ++iter) {
826 std::string JoinString(const std::vector<std::string>& parts, char sep) {
827 return JoinStringT(parts, sep);
830 string16 JoinString(const std::vector<string16>& parts, char16 sep) {
831 return JoinStringT(parts, sep);