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

/external/lldb/source/Commands/
H A DCommandObjectCommands.cpp995 const size_t first_separator_char_pos = 1; local
998 const char separator_char = regex_sed[first_separator_char_pos];
999 const size_t second_separator_char_pos = regex_sed.find (separator_char, first_separator_char_pos + 1);
1005 (int)(regex_sed.size() - first_separator_char_pos - 1),
1006 regex_sed.data() + (first_separator_char_pos + 1));
1036 else if (first_separator_char_pos + 1 == second_separator_char_pos)
1056 std::string regex(regex_sed.substr(first_separator_char_pos + 1, second_separator_char_pos - first_separator_char_pos - 1));

Completed in 80 milliseconds