Searched defs:start_backtick (Results 1 - 1 of 1) sorted by path

/external/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1374 size_t start_backtick; local
1376 while ((start_backtick = command.find ('`', pos)) != std::string::npos)
1378 if (start_backtick > 0 && command[start_backtick-1] == '\\')
1382 command.erase(start_backtick-1, 1);
1383 // No need to add one to start_backtick since we just deleted a char
1384 pos = start_backtick;
1388 const size_t expr_content_start = start_backtick + 1;
1395 command.erase (start_backtick, 2);
1429 command.erase (start_backtick, end_backtic
[all...]

Completed in 410 milliseconds