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

<<21222324252627282930>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
utf_32.py 10 def decode(input, errors='strict'):
11 return codecs.utf_32_decode(input, errors, True)
14 def __init__(self, errors='strict'):
15 codecs.IncrementalEncoder.__init__(self, errors)
20 result = codecs.utf_32_encode(input, self.errors)[0]
26 return self.encoder(input, self.errors)[0]
49 def __init__(self, errors='strict'):
50 codecs.BufferedIncrementalDecoder.__init__(self, errors)
53 def _buffer_decode(self, input, errors, final):
56 codecs.utf_32_ex_decode(input, errors, 0, final
    [all...]
punycode.py 130 def decode_generalized_number(extended, extpos, bias, errors):
139 if errors == "strict":
147 elif errors == "strict":
160 def insertion_sort(base, extended, errors):
168 bias, errors)
176 if errors == "strict":
185 def punycode_decode(text, errors):
193 base = unicode(base, "ascii", errors)
195 return insertion_sort(base, extended, errors)
201 def encode(self,input,errors='strict')
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
threaded_import_hangers.py 5 # is appended to the module-global `errors` list. That list remains empty
15 errors = [] variable
42 errors.append("%s appeared to hang" % name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
utf_32.py 10 def decode(input, errors='strict'):
11 return codecs.utf_32_decode(input, errors, True)
14 def __init__(self, errors='strict'):
15 codecs.IncrementalEncoder.__init__(self, errors)
20 result = codecs.utf_32_encode(input, self.errors)[0]
26 return self.encoder(input, self.errors)[0]
49 def __init__(self, errors='strict'):
50 codecs.BufferedIncrementalDecoder.__init__(self, errors)
53 def _buffer_decode(self, input, errors, final):
56 codecs.utf_32_ex_decode(input, errors, 0, final
    [all...]
punycode.py 130 def decode_generalized_number(extended, extpos, bias, errors):
139 if errors == "strict":
147 elif errors == "strict":
160 def insertion_sort(base, extended, errors):
168 bias, errors)
176 if errors == "strict":
185 def punycode_decode(text, errors):
193 base = unicode(base, "ascii", errors)
195 return insertion_sort(base, extended, errors)
201 def encode(self,input,errors='strict')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
threaded_import_hangers.py 5 # is appended to the module-global `errors` list. That list remains empty
15 errors = [] variable
42 errors.append("%s appeared to hang" % name)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/
too_large.d 1 #name: Check for bogus overflow errors in .byte directives
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
punycode.py 130 def decode_generalized_number(extended, extpos, bias, errors):
139 if errors == "strict":
147 elif errors == "strict":
160 def insertion_sort(base, extended, errors):
168 bias, errors)
176 if errors == "strict":
185 def punycode_decode(text, errors):
193 base = unicode(base, "ascii", errors)
195 return insertion_sort(base, extended, errors)
201 def encode(self,input,errors='strict'):
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
punycode.py 130 def decode_generalized_number(extended, extpos, bias, errors):
139 if errors == "strict":
147 elif errors == "strict":
160 def insertion_sort(base, extended, errors):
168 bias, errors)
176 if errors == "strict":
185 def punycode_decode(text, errors):
193 base = unicode(base, "ascii", errors)
195 return insertion_sort(base, extended, errors)
201 def encode(self,input,errors='strict'):
    [all...]
  /external/python/cpython2/Lib/encodings/
punycode.py 130 def decode_generalized_number(extended, extpos, bias, errors):
139 if errors == "strict":
147 elif errors == "strict":
160 def insertion_sort(base, extended, errors):
168 bias, errors)
176 if errors == "strict":
185 def punycode_decode(text, errors):
193 base = unicode(base, "ascii", errors)
195 return insertion_sort(base, extended, errors)
201 def encode(self,input,errors='strict')
    [all...]
  /external/python/cpython3/Lib/encodings/
punycode.py 127 def decode_generalized_number(extended, extpos, bias, errors):
136 if errors == "strict":
144 elif errors == "strict":
157 def insertion_sort(base, extended, errors):
165 bias, errors)
173 if errors == "strict":
182 def punycode_decode(text, errors):
192 base = str(text[:pos], "ascii", errors)
194 return insertion_sort(base, extended, errors)
200 def encode(self, input, errors='strict')
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
decode_csv_op.cc 22 #include "tensorflow/core/lib/core/errors.h"
34 errors::InvalidArgument("Out type too large"));
38 errors::InvalidArgument("field_delim should be only 1 char"));
52 errors::InvalidArgument(
73 errors::InvalidArgument("Expect ", out_type_.size(),
86 errors::InvalidArgument(
94 errors::InvalidArgument(
106 errors::InvalidArgument(
114 errors::InvalidArgument(
126 errors::InvalidArgument
    [all...]
linalg_ops_common.cc 25 #include "tensorflow/core/lib/core/errors.h"
36 errors::InvalidArgument("Expected a single input matrix, got %d.",
39 errors::InvalidArgument("Input must be a matrix."));
47 errors::InvalidArgument("Expected a single input matrix, got %d.",
50 errors::InvalidArgument("Input matrix must be square."));
58 errors::InvalidArgument("Expected two input matrices, got %d.",
61 errors::InvalidArgument("First input (lhs) must be a matrix."));
63 errors::InvalidArgument("Second input (rhs) must be a matrix."));
67 errors::InvalidArgument("Input matrix and rhs are incompatible."));
75 errors::InvalidArgument("Expected two input matrices, got %d."
    [all...]
lookup_util.cc 20 #include "tensorflow/core/lib/core/errors.h"
44 if (!errors::IsOutOfRange(s)) {
63 status_(errors::FailedPrecondition("Not initialized")) {}
106 if (errors::IsOutOfRange(status_) && next_id_ != vocab_size_) {
107 status_ = errors::InvalidArgument("Invalid vocab_size in ", filename_,
118 status_ = errors::OutOfRange("Finished reading ", vocab_size_,
124 status_ = errors::InvalidArgument("Invalid content in ", filename_,
135 status_ = errors::InvalidArgument(
197 return errors::InvalidArgument("Field ", token, " in line ", next_id_,
206 return errors::InvalidArgument("Field ", token, " in line ", next_id_
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
punycode.py 130 def decode_generalized_number(extended, extpos, bias, errors):
139 if errors == "strict":
147 elif errors == "strict":
160 def insertion_sort(base, extended, errors):
168 bias, errors)
176 if errors == "strict":
185 def punycode_decode(text, errors):
193 base = unicode(base, "ascii", errors)
195 return insertion_sort(base, extended, errors)
201 def encode(self,input,errors='strict')
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
punycode.py 130 def decode_generalized_number(extended, extpos, bias, errors):
139 if errors == "strict":
147 elif errors == "strict":
160 def insertion_sort(base, extended, errors):
168 bias, errors)
176 if errors == "strict":
185 def punycode_decode(text, errors):
193 base = unicode(base, "ascii", errors)
195 return insertion_sort(base, extended, errors)
201 def encode(self,input,errors='strict')
    [all...]
  /external/guice/core/src/com/google/inject/internal/
InjectorImpl.java 153 Errors errors = new Errors(key); local
155 BindingImpl<T> result = getBindingOrThrow(key, errors, JitLimitation.EXISTING_JIT);
156 errors.throwConfigurationExceptionIfErrorsExist();
159 throw new ConfigurationException(errors.merge(e.getErrors()).getMessages());
186 Key<?> providedKey = (Key<?>)getProvidedKey((Key)key, new Errors());
205 <T> BindingImpl<T> getBindingOrThrow(Key<T> key, Errors errors, JitLimitation jitType)
214 return getJustInTimeBinding(key, errors, jitType)
    [all...]
ExposedKeyFactory.java 37 public void notify(Errors errors) {
45 errors.withSource(explicitBinding.getSource()).exposedButNotBound(key);
52 public T get(Errors errors, InternalContext context, Dependency<?> dependency, boolean linked)
54 return delegate.getInternalFactory().get(errors, context, dependency, linked);
Initializables.java 29 public T get(Errors errors) throws ErrorsException {
InternalFactory.java 36 T get(Errors errors, InternalContext context, Dependency<?> dependency, boolean linked)
  /cts/hostsidetests/incident/apps/errorsapp/src/com/android/server/cts/errors/
NativeActivity.java 17 package com.android.server.cts.errors;
  /cts/tools/selinux/
SELinuxNeverallowTestFrame.py 143 assertTrue("The following errors were encountered when validating the SELinux"
  /external/libxml2/python/tests/
validDTD.py 10 self.errors = []
15 self.errors.append(msg)
36 if ret != 1 or e.errors:
44 if ret != 0 or not e.errors:
validSchemas.py 10 self.errors = []
15 self.errors.append(msg)
58 if ret != 0 or e.errors:
66 if ret == 0 or not e.errors:
  /external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
parse-build.sh 47 print_bug $title build errors:
58 print_warning $title build errors:

Completed in 1420 milliseconds

<<21222324252627282930>>