Lines Matching refs:error_msg
145 std::string error_msg; in Execute() local
148 error_msg.assign ("ambiguous command "); in Execute()
150 error_msg.assign ("invalid command "); in Execute()
152 error_msg.append ("'"); in Execute()
153 error_msg.append (GetCommandName()); in Execute()
154 error_msg.append (" "); in Execute()
155 error_msg.append (sub_command); in Execute()
156 error_msg.append ("'"); in Execute()
160 error_msg.append (" Possible completions:"); in Execute()
163 error_msg.append ("\n\t"); in Execute()
164 error_msg.append (matches.GetStringAtIndex (i)); in Execute()
167 error_msg.append ("\n"); in Execute()
168 result.AppendRawError (error_msg.c_str()); in Execute()