Searched defs:third_separator_char_pos (Results 1 - 1 of 1) sorted by relevance

/external/lldb/source/Commands/
H A DCommandObjectCommands.cpp1010 const size_t third_separator_char_pos = regex_sed.find (separator_char, second_separator_char_pos + 1); local
1012 if (third_separator_char_pos == std::string::npos)
1021 if (third_separator_char_pos != regex_sed_size - 1)
1025 if (regex_sed.find_first_not_of("\t\n\v\f\r ", third_separator_char_pos + 1) != std::string::npos)
1028 (int)third_separator_char_pos + 1,
1030 (int)(regex_sed.size() - third_separator_char_pos - 1),
1031 regex_sed.data() + (third_separator_char_pos + 1));
1046 else if (second_separator_char_pos + 1 == third_separator_char_pos)
1057 std::string subst(regex_sed.substr(second_separator_char_pos + 1, third_separator_char_pos - second_separator_char_pos - 1));

Completed in 83 milliseconds