Home
last modified time | relevance | path

Searched refs:start_backtick (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1724 size_t start_backtick; in PreprocessCommand() local
1726 while ((start_backtick = command.find('`', pos)) != std::string::npos) { in PreprocessCommand()
1731 if (start_backtick > 0 && command[start_backtick - 1] == '\\') { in PreprocessCommand()
1734 command.erase(start_backtick - 1, 1); in PreprocessCommand()
1736 pos = start_backtick; in PreprocessCommand()
1740 const size_t expr_content_start = start_backtick + 1; in PreprocessCommand()
1750 command.erase(start_backtick, 2); in PreprocessCommand()
1761 command.erase(start_backtick, end_backtick - start_backtick + 1); in PreprocessCommand()
1762 command.insert(start_backtick, std::string(expr_str)); in PreprocessCommand()
1763 pos = start_backtick + expr_str.size(); in PreprocessCommand()