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

<<81828384858687888990>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
result.py 33 failures and errors that occurred among those test runs. The collections
43 self.errors = []
116 self.errors.append((test, self._exc_info_to_string(err, test)))
146 return len(self.failures) == len(self.errors) == 0
191 return ("<%s run=%i errors=%i failures=%i>" %
192 (util.strclass(self.__class__), self.testsRun, len(self.errors),
runner.py 108 self.printErrorList('ERROR', self.errors)
111 def printErrorList(self, flavour, errors):
112 for test, err in errors:
122 It prints out the names of tests as they are run, errors as they
179 failed, errored = map(len, (result.failures, result.errors))
183 infos.append("errors=%d" % errored)
  /external/antlr/antlr-3.4/runtime/Python/tests/
t058rewriteAST.py     [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
AbstractEstimator.java 248 * Guess the errors in unbound estimated parameters.
251 * @return errors in estimated parameters
265 double[] errors = new double[problem.getUnboundParameters().length]; local
268 for (int i = 0; i < errors.length; ++i) {
269 errors[i] = FastMath.sqrt(covar[i][i]) * c;
271 return errors;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
AbstractLeastSquaresOptimizer.java 301 * Guess the errors in optimized parameters.
303 * @return errors in optimized parameters
316 double[] errors = new double[cols]; local
319 for (int i = 0; i < errors.length; ++i) {
320 errors[i] = FastMath.sqrt(covar[i][i]) * c;
322 return errors;
  /external/autotest/client/site_tests/kernel_SchedBandwith/
kernel_SchedBandwith.py 224 errors = 0
235 errors += self._check_stats('quota', quota_stats, 0.9)
240 errors += self._check_stats('shares', shares_stats, 0.6)
242 if errors:
  /external/autotest/client/site_tests/network_EthCaps/
network_EthCaps.py 99 errors = 0
105 errors += 1
122 errors += 1
124 if errors:
125 raise error.TestError("Eth capability checks. See errors")
  /external/autotest/server/site_tests/display_Tearing/
display_Tearing.py 232 errors = []
239 test_mirrored, chameleon_port, errors)
241 if errors:
242 raise error.TestFail('; '.join(set(errors)))
  /external/clang/tools/clang-format/
clang-format.py 103 print 'clang-format: incomplete (syntax errors)'
  /external/freetype/include/freetype/internal/
ftrfork.h 125 /* offset (offsets[N]), and an error code (errors[N]). */
149 /* errors :: */
150 /* An array of FreeType error codes. `errors[N]' is the error */
151 /* code of Nth guessing rule function. If `errors[N]' is not */
160 FT_Error* errors );
  /external/icu/icu4c/source/test/intltest/
jamotest.cpp 402 int32_t errors = 0; local
411 ++errors;
433 if (errors != 0) {
434 errln((UnicodeString)"Test word failures: " + errors + " out of " + total);
  /external/junit-params/src/main/java/junitparams/internal/
TestMethod.java 157 List<Throwable> errors = new ArrayList<Throwable>(); local
158 method.validatePublicVoidNoArg(false, errors);
159 if (!errors.isEmpty()) {
160 throw new RuntimeException(errors.get(0));
  /external/junit-params/src/test/java/junitparams/
RulesTest.java 25 public ErrorCollector errors = new ErrorCollector(); field in class:RulesTest
  /external/kernel-headers/original/uapi/linux/
virtio_blk.h 138 __virtio32 errors; member in struct:virtio_scsi_inhdr
  /external/libbrillo/brillo/dbus/
dbus_method_invoker.h 73 #include <brillo/errors/error.h>
74 #include <brillo/errors/error_codes.h>
111 errors::dbus::kDomain,
117 errors::dbus::kDomain,
dbus_method_response.h 13 #include <brillo/errors/error.h>
  /external/libbrillo/brillo/http/
http_connection.h 15 #include <brillo/errors/error.h>
http_transport.h 18 #include <brillo/errors/error.h>
  /external/libbrillo/brillo/streams/
input_stream_set.cc 28 Error::AddTo(error, FROM_HERE, errors::stream::kDomain,
29 errors::stream::kInvalidParameter,
37 Error::AddTo(error, FROM_HERE, errors::stream::kDomain,
38 errors::stream::kInvalidParameter,
  /external/libese/libese/include/ese/
ese_hw_api.h 173 const char **errors; member in struct:EseOperations
191 * Provided by libese to manage exposing usable errors up the stack to the
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_ra_checker.cpp 46 assert(sh.errors.empty());
61 for (error_map::iterator I = sh.errors.begin(), E = sh.errors.end();
73 sh.errors.insert(std::make_pair(n, e));
  /external/protobuf/src/google/protobuf/
reflection_ops.cc 227 vector<string>* errors) {
235 errors->push_back(prefix + descriptor->field(i)->name());
255 errors);
261 errors);
  /external/python/cpython2/Include/
fileobject.h 43 PyAPI_FUNC(int) PyFile_SetEncodingAndErrors(PyObject *, const char *, char *errors);
  /external/python/cpython2/Lib/distutils/
dep_util.py 11 from distutils.errors import DistutilsFileError
  /external/python/cpython2/Lib/distutils/tests/
test_spawn.py 9 from distutils.errors import DistutilsExecError

Completed in 1323 milliseconds

<<81828384858687888990>>