HomeSort by relevance Sort by last modified time
    Searched refs:errors (Results 2326 - 2350 of 5875) sorted by null

<<919293949596979899100>>

  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
server.go 9 "errors"
15 var errMissingParams = errors.New("jsonrpc: request body missing params")
107 return errors.New("invalid sequence number in response")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 67 def decode(self, encoding=None, errors=None): # XXX improve this?
69 if errors:
70 return self.__class__(self.data.decode(encoding, errors))
75 def encode(self, encoding=None, errors=None): # XXX improve this?
77 if errors:
78 return self.__class__(self.data.encode(encoding, errors))
145 errors that would be very hard to track down.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 67 def decode(self, encoding=None, errors=None): # XXX improve this?
69 if errors:
70 return self.__class__(self.data.decode(encoding, errors))
75 def encode(self, encoding=None, errors=None): # XXX improve this?
77 if errors:
78 return self.__class__(self.data.encode(encoding, errors))
145 errors that would be very hard to track down.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
textio.c 131 {"errors", (getter)textiobase_errors_get, NULL, textiobase_errors_doc},
192 PyObject *errors; member in struct:__anon4385
204 PyObject *errors = NULL; local
205 char *kwlist[] = {"decoder", "translate", "errors", NULL};
208 kwlist, &decoder, &translate, &errors))
214 if (errors == NULL) {
215 self->errors = PyUnicode_FromString("strict");
216 if (self->errors == NULL)
220 Py_INCREF(errors);
221 self->errors = errors;
669 PyObject *errors; member in struct:__anon4386
831 char *errors = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
textio.c 131 {"errors", (getter)textiobase_errors_get, NULL, textiobase_errors_doc},
192 PyObject *errors; member in struct:__anon4698
204 PyObject *errors = NULL; local
205 char *kwlist[] = {"decoder", "translate", "errors", NULL};
208 kwlist, &decoder, &translate, &errors))
214 if (errors == NULL) {
215 self->errors = PyUnicode_FromString("strict");
216 if (self->errors == NULL)
220 Py_INCREF(errors);
221 self->errors = errors;
653 PyObject *errors; member in struct:__anon4699
815 char *errors = NULL; local
    [all...]
  /external/ImageMagick/www/api/
effect.php 88 <dd>return any errors or warnings in this structure. </dd>
123 <dd>return any errors or warnings in this structure. </dd>
158 <dd>return any errors or warnings in this structure. </dd>
189 <dd>return any errors or warnings in this structure. </dd>
215 <dd>return any errors or warnings in this structure. </dd>
246 <dd>return any errors or warnings in this structure. </dd>
281 <dd>return any errors or warnings in this structure. </dd>
316 <dd>return any errors or warnings in this structure. </dd>
351 <dd>return any errors or warnings in this structure. </dd>
392 <dd>return any errors or warnings in this structure. </dd
    [all...]
colorspace.php 84 <dd>return any errors or warnings in this structure. </dd>
111 <dd>return any errors or warnings in this structure. </dd>
138 <dd>return any errors or warnings in this structure. </dd>
169 <dd>return any errors or warnings in this structure. </dd>
transform.php 84 <dd>Return any errors or warnings in this structure. </dd>
115 <dd>return any errors or warnings in this structure. </dd>
146 <dd>return any errors or warnings in this structure. </dd>
172 <dd>return any errors or warnings in this structure. </dd>
203 <dd>return any errors or warnings in this structure. </dd>
234 <dd>return any errors or warnings in this structure. </dd>
260 <dd>return any errors or warnings in this structure. </dd>
286 <dd>return any errors or warnings in this structure. </dd>
321 <dd>return any errors or warnings in this structure. </dd>
356 <dd>return any errors or warnings in this structure. </dd
    [all...]
  /external/python/cpython2/Modules/_io/
textio.c 131 {"errors", (getter)textiobase_errors_get, NULL, textiobase_errors_doc},
192 PyObject *errors; member in struct:__anon32719
204 PyObject *errors = NULL; local
205 char *kwlist[] = {"decoder", "translate", "errors", NULL};
208 kwlist, &decoder, &translate, &errors))
214 if (errors == NULL) {
215 self->errors = PyUnicode_FromString("strict");
216 if (self->errors == NULL)
220 Py_INCREF(errors);
221 self->errors = errors
669 PyObject *errors; member in struct:__anon32720
831 char *errors = NULL; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /external/guice/core/src/com/google/inject/internal/
Errors.java 65 * considered to have executed successfully only if new errors were not added to this collection.
67 * <p>Errors can be chained to provide additional context. To add context, call {@link #withSource}
68 * to create a new Errors instance that contains additional context. All messages added to the
74 * method with an errors object that includes its context.
78 public final class Errors implements Serializable {
87 * The root errors object. Used to access the list of error messages.
89 private final Errors root;
92 * The parent errors object. Used to obtain the chain of source objects.
94 private final Errors parent;
97 * The leaf source for errors added here
104 private List<Message> errors; \/\/ lazy, use getErrorsForAdd() field in class:Errors
342 Errors errors = addMessage( local
    [all...]
LinkedProviderBindingImpl.java 74 public void initialize(InjectorImpl injector, Errors errors) throws ErrorsException {
76 delayedInitializer.initialize(injector, errors);
State.java 75 public TypeConverterBinding getConverter(String stringValue, TypeLiteral<?> type, Errors errors,
160 String stringValue, TypeLiteral<?> type, Errors errors, Object source);
  /external/nanopb-c/generator/google/protobuf/internal/
python_message.py 763 errors = []
839 def IsInitialized(self, errors=None):
843 errors: A list which, if provided, will be populated with the field
856 if errors is not None:
857 errors.extend(self.FindInitializationErrors())
865 if errors is not None:
866 errors.extend(self.FindInitializationErrors())
869 if errors is not None:
870 errors.extend(self.FindInitializationErrors()
    [all...]
  /external/tensorflow/tensorflow/core/framework/
op_def_util.cc 25 #include "tensorflow/core/lib/core/errors.h"
58 return errors::InvalidArgument(
77 return errors::InvalidArgument(
95 return errors::InvalidArgument(
117 return errors::InvalidArgument(
139 return errors::Unimplemented(
176 return errors::InvalidArgument( \
329 return errors::Unimplemented(
595 return errors::InvalidArgument("Incompatible Op change: ", __VA_ARGS__, \
677 return errors::InvalidArgument("Missing attr '", penultimate_attr.name()
    [all...]
  /external/tensorflow/tensorflow/core/graph/
graph.cc 25 #include "tensorflow/core/lib/core/errors.h"
197 return errors::InvalidArgument("Invalid input_edge index: ", idx, ", Node ",
218 return errors::NotFound("Could not find input edge ", idx, " for ", name());
229 return errors::Internal("Invalid edge input number ", edge->dst_input());
232 return errors::Internal("Duplicate edge input number: ",
240 return errors::InvalidArgument("Missing edge input number: ", i);
477 return errors::InvalidArgument("Couldn't find edge to ",
596 return errors::InvalidArgument("Node is null");
600 return errors::InvalidArgument("node id ", id, " is less than zero");
603 return errors::InvalidArgument
    [all...]
  /external/tensorflow/tensorflow/python/lib/io/
file_io_test.py 24 from tensorflow.python.framework import errors
40 with self.assertRaises(errors.NotFoundError):
46 with self.assertRaises(errors.NotFoundError):
66 with self.assertRaises(errors.AlreadyExistsError):
118 with self.assertRaises(errors.PermissionDeniedError):
125 with self.assertRaises(errors.PermissionDeniedError):
136 with self.assertRaises(errors.NotFoundError):
193 with self.assertRaises(errors.AlreadyExistsError):
218 with self.assertRaises(errors.AlreadyExistsError):
225 with self.assertRaises(errors.NotFoundError)
    [all...]
  /build/make/tools/
event_log_tags.py 36 self.errors.append((self.filename, linenum, msg))
47 self.errors = []
java-event-log-tags.py 93 if tagfile.errors:
94 for fn, ln, msg in tagfile.errors:
  /build/soong/zip/
zip.go 20 "errors"
101 errors chan error
307 z.errors = make(chan error)
308 defer close(z.errors)
331 return errors.New("must specify --jar when specifying a manifest via -m")
352 z.errors <- err
372 // Only read and process errors
432 case err := <-z.errors:
439 case err := <-z.errors:
606 z.errors <- er
    [all...]
  /development/testrunner/test_defs/
xml_suite_helper.py 25 import errors
100 raise errors.ParseError(msg=error_msg)
  /external/annotation-tools/annotation-file-utilities/src/annotator/
Source.java 120 List<Diagnostic<? extends JavaFileObject>> errors = diagnostics.getDiagnostics(); local
123 for (Diagnostic<? extends JavaFileObject> d : errors) {
  /external/boringssl/src/ssl/test/runner/
chacha20_poly1305.go 21 "errors"
126 return nil, errors.New("bad key length")
181 return nil, errors.New("chacha20: message authentication failed")
188 return nil, errors.New("chacha20: message authentication failed")
recordingconn.go 20 "errors"
147 return nil, errors.New("invalid test data")
153 return nil, errors.New("invalid test data")
160 return nil, errors.New("invalid hex byte in test data: " + err.Error())
  /external/brotli/go/cbrotli/
reader.go 33 "errors"
45 var errExcessiveInput = errors.New("cbrotli: excessive input")
46 var errInvalidState = errors.New("cbrotli: invalid state")
47 var errReaderClosed = errors.New("cbrotli: Reader is closed")

Completed in 1529 milliseconds

<<919293949596979899100>>