Lines Matching refs:error_msg
127 std::string error_msg; in Execute() local
130 error_msg.assign("ambiguous command "); in Execute()
132 error_msg.assign("invalid command "); in Execute()
134 error_msg.append("'"); in Execute()
135 error_msg.append(GetCommandName()); in Execute()
136 error_msg.append(" "); in Execute()
137 error_msg.append(sub_command); in Execute()
138 error_msg.append("'."); in Execute()
141 error_msg.append(" Possible completions:"); in Execute()
143 error_msg.append("\n\t"); in Execute()
144 error_msg.append(matches.GetStringAtIndex(i)); in Execute()
147 error_msg.append("\n"); in Execute()
148 result.AppendRawError(error_msg.c_str()); in Execute()