Lines Matching defs:command
124 void DoExecute(Args &command, CommandReturnObject &result) override {
198 void DoExecute(Args &command, CommandReturnObject &result) override {
269 void DoExecute(Args &command, CommandReturnObject &result) override {
322 if (command.GetArgumentCount() > 1) {
325 command[0].c_str());
332 if (command.GetArgumentCount() == 1) {
333 if (command[0].ref().getAsInteger(0, frame_idx)) {
335 command[0].c_str());
338 } else if (command.GetArgumentCount() == 0) {
381 operator overloads use the expression command to print the variable instead.
474 void DoExecute(Args &command, CommandReturnObject &result) override {
522 if (!command.empty()) {
525 // If we have any args to the variable command, we will make variable
527 for (auto &entry : command) {
616 } else // No command arg specified. Use variable_list, instead.
763 // Instance variables to hold the values for command options.
776 void DoExecute(Args &command, CommandReturnObject &result) override;
789 and using the 'frame recognizer add' command. The Python class should have a
807 The file containing this implementation can be imported via 'command script
813 (lldb) command script import .../fd_recognizer.py
832 void CommandObjectFrameRecognizerAdd::DoExecute(Args &command,
900 void DoExecute(Args &command, CommandReturnObject &result) override {
947 void DoExecute(Args &command, CommandReturnObject &result) override {
948 if (command.GetArgumentCount() == 0) {
963 if (command.GetArgumentCount() != 1) {
970 if (!llvm::to_integer(command.GetArgumentAtIndex(0), recognizer_id)) {
972 command.GetArgumentAtIndex(0));
980 command.GetArgumentAtIndex(0));
997 void DoExecute(Args &command, CommandReturnObject &result) override {
1045 void DoExecute(Args &command, CommandReturnObject &result) override {
1046 const char *frame_index_str = command.GetArgumentAtIndex(0);
1064 if (command.GetArgumentCount() != 1) {
1099 "frame recognizer [<sub-command-options>] ") {