Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1679 size_t start_backtick; in PreprocessCommand() local
1681 while ((start_backtick = command.find('`', pos)) != std::string::npos) { in PreprocessCommand()
1686 if (start_backtick > 0 && command[start_backtick - 1] == '\\') { in PreprocessCommand()
1689 command.erase(start_backtick - 1, 1); in PreprocessCommand()
1691 pos = start_backtick; in PreprocessCommand()
1695 const size_t expr_content_start = start_backtick + 1; in PreprocessCommand()
1705 command.erase(start_backtick, 2); in PreprocessCommand()
1741 command.erase(start_backtick, end_backtick - start_backtick + 1); in PreprocessCommand()
1747 command.insert(start_backtick, std::string(value_strm.GetString())); in PreprocessCommand()
1748 pos = start_backtick + value_string_size; in PreprocessCommand()