Lines Matching defs:CmdLine
37 // CmdLine is the class used to handle a command line containing a single
41 class CmdLine : public StackObj {
48 CmdLine(const char* line, size_t len, bool no_command_name);
58 // Iterator class taking a character string in input and returning a CmdLine
76 CmdLine next() {
80 CmdLine line(&(_str[_cursor]), n - _cursor, false);
82 // The default copy constructor of CmdLine is used to return a CmdLine
205 void parse(CmdLine* line, char delim, TRAPS);
258 virtual void parse(CmdLine* line, char delim, TRAPS) {
295 virtual void parse(CmdLine *line, char delim, TRAPS);
364 static DCmd* create_global_DCmd(CmdLine &line, outputStream* out, TRAPS);
366 static DCmd* create_local_DCmd(CmdLine &line, outputStream* out, TRAPS);