Searched refs:start_backtick (Results 1 – 1 of 1) sorted by relevance
1701 size_t start_backtick; in PreprocessCommand() local1703 while ((start_backtick = command.find('`', pos)) != std::string::npos) { in PreprocessCommand()1708 if (start_backtick > 0 && command[start_backtick - 1] == '\\') { in PreprocessCommand()1711 command.erase(start_backtick - 1, 1); in PreprocessCommand()1713 pos = start_backtick; in PreprocessCommand()1717 const size_t expr_content_start = start_backtick + 1; in PreprocessCommand()1727 command.erase(start_backtick, 2); in PreprocessCommand()1738 command.erase(start_backtick, end_backtick - start_backtick + 1); in PreprocessCommand()1739 command.insert(start_backtick, std::string(expr_str)); in PreprocessCommand()1740 pos = start_backtick + expr_str.size(); in PreprocessCommand()