Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:remainder

1809         std::string remainder;
1811 remainder = command_string.substr (actual_cmd_name_len); // Note: 'actual_cmd_name_len' may be considerably shorter
1818 size_t pos = remainder.find_first_not_of (white_space);
1820 remainder.erase(0, pos);
1823 log->Printf ("HandleCommand, command line after removing command name(s): '%s'", remainder.c_str());
1825 cmd_obj->Execute (remainder.c_str(), result);