Lines Matching defs:errors
1311 PyObject* errors = NULL;
1312 if (PyArg_ParseTuple(args, "|O", &errors) < 0) {
1318 if (errors != NULL) {
1329 errors,
1718 ScopedPyObjectPtr errors(FindInitializationErrors(self));
1719 if (errors == NULL) {
1727 PyObject_CallMethod(comma.get(), "join", "O", errors.get()));
1899 // get OOM errors. The protobuf APIs do not provide any tools for processing
2175 vector<string> errors;
2176 message->FindInitializationErrors(&errors);
2178 PyObject* error_list = PyList_New(errors.size());
2182 for (size_t i = 0; i < errors.size(); ++i) {
2183 const string& error = errors[i];