Searched defs:end_quote (Results 1 - 1 of 1) sorted by relevance

/external/lldb/source/Interpreter/
H A DArgs.cpp297 const char *end_quote = ::strchr (arg_piece_start, quote_char); local
298 while (end_quote && end_quote[-1] == '\\')
302 end_quote = ::strchr (end_quote + 1, quote_char);
305 if (end_quote)
307 if (end_quote > arg_piece_start)
308 arg.append (arg_piece_start, end_quote - arg_piece_start);
312 if (end_quote[1] == ' ' || end_quote[
[all...]

Completed in 97 milliseconds