Home | History | Annotate | Download | only in base

Lines Matching refs:delimiter_position

344   for (size_t delimiter_position = current_path.find('.');
345 delimiter_position != std::string::npos;
346 delimiter_position = current_path.find('.')) {
348 std::string key(current_path, 0, delimiter_position);
356 current_path.erase(0, delimiter_position + 1);
400 for (size_t delimiter_position = current_path.find('.');
401 delimiter_position != std::string::npos;
402 delimiter_position = current_path.find('.')) {
405 current_path.substr(0, delimiter_position), &child_dictionary))
409 current_path.erase(0, delimiter_position + 1);
596 size_t delimiter_position = current_path.rfind('.');
597 if (delimiter_position != std::string::npos) {
598 if (!GetDictionary(current_path.substr(0, delimiter_position),
601 current_path.erase(0, delimiter_position + 1);