Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectExpression.cpp471 const char *end_options = NULL; in DoExecute() local
475 end_options = ::strstr (s, "--"); in DoExecute()
476 if (end_options) in DoExecute()
478 end_options += 2; // Get past the "--" in DoExecute()
479 if (::isspace (end_options[0])) in DoExecute()
481 expr = end_options; in DoExecute()
487 s = end_options; in DoExecute()
490 if (end_options) in DoExecute()
492 Args args (llvm::StringRef(command, end_options - command)); in DoExecute()
HDCommandObjectWatchpoint.cpp1199 const char *end_options = NULL; in DoExecute() local
1203 end_options = ::strstr (s, "--"); in DoExecute()
1204 if (end_options) in DoExecute()
1206 end_options += 2; // Get past the "--" in DoExecute()
1207 if (::isspace (end_options[0])) in DoExecute()
1209 expr = end_options; in DoExecute()
1215 s = end_options; in DoExecute()
1218 if (end_options) in DoExecute()
1220 Args args (llvm::StringRef(raw_command, end_options - raw_command)); in DoExecute()
HDCommandObjectPlatform.cpp2123 const char *end_options = NULL; in DoExecute() local
2127 end_options = ::strstr (s, "--"); in DoExecute()
2128 if (end_options) in DoExecute()
2130 end_options += 2; // Get past the "--" in DoExecute()
2131 if (::isspace (end_options[0])) in DoExecute()
2133 expr = end_options; in DoExecute()
2139 s = end_options; in DoExecute()
2142 if (end_options) in DoExecute()
2144 Args args (llvm::StringRef(raw_command_line, end_options - raw_command_line)); in DoExecute()