Searched refs:start_backtick (Results 1 – 1 of 1) sorted by relevance
1500 size_t start_backtick; in PreprocessCommand() local1502 while ((start_backtick = command.find('`', pos)) != std::string::npos) { in PreprocessCommand()1507 if (start_backtick > 0 && command[start_backtick - 1] == '\\') { in PreprocessCommand()1510 command.erase(start_backtick - 1, 1); in PreprocessCommand()1512 pos = start_backtick; in PreprocessCommand()1516 const size_t expr_content_start = start_backtick + 1; in PreprocessCommand()1526 command.erase(start_backtick, 2); in PreprocessCommand()1562 command.erase(start_backtick, end_backtick - start_backtick + 1); in PreprocessCommand()1568 command.insert(start_backtick, std::string(value_strm.GetString())); in PreprocessCommand()1569 pos = start_backtick + value_string_size; in PreprocessCommand()