Home | History | Annotate | Download | only in phonenumbers

Lines Matching refs:from_index

125   size_t from_index = 0;
129 // Fails if the substring of normalized_candidate starting from from_index
131 from_index = normalized_candidate.find(formatted_number_groups.at(i),
132 from_index);
133 if (from_index == string::npos) {
136 // Moves from_index forward.
137 from_index += formatted_number_groups.at(i).length();
138 if (i == 0 && from_index < normalized_candidate.length()) {
142 if (isdigit(normalized_candidate.at(from_index))) {
150 from_index - formatted_number_groups.at(i).length()),
158 return normalized_candidate.substr(from_index)