Home | History | Annotate | Download | only in strings

Lines Matching full:offsets

622     const std::vector<OutStringType>& subst, std::vector<size_t>* offsets) {
656 if (offsets) {
673 if (offsets) {
676 offsets->push_back(i->offset);
684 std::vector<size_t>* offsets) {
685 return DoReplaceStringPlaceholders(format_string, subst, offsets);
690 std::vector<size_t>* offsets) {
691 return DoReplaceStringPlaceholders(format_string, subst, offsets);
697 std::vector<size_t> offsets;
700 string16 result = ReplaceStringPlaceholders(format_string, subst, &offsets);
702 DCHECK_EQ(1U, offsets.size());
704 *offset = offsets[0];