Home | History | Annotate | Download | only in strings

Lines Matching refs:subst

887     const std::vector<OutStringType>& subst,
889 size_t substitutions = subst.size();
893 for (const auto& cur : subst)
926 formatted.append(subst.at(index));
941 const std::vector<string16>& subst,
943 return DoReplaceStringPlaceholders(format_string, subst, offsets);
947 const std::vector<std::string>& subst,
949 return DoReplaceStringPlaceholders(format_string, subst, offsets);
956 std::vector<string16> subst;
957 subst.push_back(a);
958 string16 result = ReplaceStringPlaceholders(format_string, subst, &offsets);