Home
last modified time | relevance | path

Searched refs:current_pair (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/base/i18n/
Dbuild_utf8_validator_tables.cc224 const Pair& current_pair = *it++; in MoveRightMostCharToSet() local
225 if (current_pair.character.size() == unconverted_bytes.size() + 1 && in MoveRightMostCharToSet()
228 current_pair.character.begin()) && in MoveRightMostCharToSet()
229 converted == current_pair.set) { in MoveRightMostCharToSet()
233 DCHECK_EQ(new_range.to() + 1, current_pair.character.back()); in MoveRightMostCharToSet()
234 new_range.AddByte(current_pair.character.back()); in MoveRightMostCharToSet()
238 unconverted_bytes = Character(current_pair.character.begin(), in MoveRightMostCharToSet()
239 current_pair.character.end() - 1); in MoveRightMostCharToSet()
240 new_range = Range(current_pair.character.back()); in MoveRightMostCharToSet()
241 converted = current_pair.set; in MoveRightMostCharToSet()
/external/deqp/external/openglcts/modules/gl/
Dgl3cCullDistanceTests.cpp899 const _token_value_pair& current_pair = token_value_pairs[n_pair]; in iterate() local
901 if (current_pair.token == NULL || current_pair.value == NULL) in iterate()
906 while ((token_position = current_body.body_ptr->find(current_pair.token)) != std::string::npos) in iterate()
908 … current_body.body_ptr->replace(token_position, strlen(current_pair.token), current_pair.value); in iterate()