Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Commands/
DCommandObjectExpression.cpp446 const char *end_options = NULL; in DoExecute() local
450 end_options = ::strstr (s, "--"); in DoExecute()
451 if (end_options) in DoExecute()
453 end_options += 2; // Get past the "--" in DoExecute()
454 if (::isspace (end_options[0])) in DoExecute()
456 expr = end_options; in DoExecute()
462 s = end_options; in DoExecute()
465 if (end_options) in DoExecute()
467 Args args (command, end_options - command); in DoExecute()
DCommandObjectWatchpoint.cpp1198 const char *end_options = NULL; in DoExecute() local
1202 end_options = ::strstr (s, "--"); in DoExecute()
1203 if (end_options) in DoExecute()
1205 end_options += 2; // Get past the "--" in DoExecute()
1206 if (::isspace (end_options[0])) in DoExecute()
1208 expr = end_options; in DoExecute()
1214 s = end_options; in DoExecute()
1217 if (end_options) in DoExecute()
1219 Args args (raw_command, end_options - raw_command); in DoExecute()
DCommandObjectPlatform.cpp2117 const char *end_options = NULL; in DoExecute() local
2121 end_options = ::strstr (s, "--"); in DoExecute()
2122 if (end_options) in DoExecute()
2124 end_options += 2; // Get past the "--" in DoExecute()
2125 if (::isspace (end_options[0])) in DoExecute()
2127 expr = end_options; in DoExecute()
2133 s = end_options; in DoExecute()
2136 if (end_options) in DoExecute()
2138 Args args (raw_command_line, end_options - raw_command_line); in DoExecute()