HomeSort by relevance Sort by last modified time
    Searched defs:errors (Results 326 - 350 of 1189) sorted by null

<<11121314151617181920>>

  /external/libtextclassifier/util/hash/
farmhash.cc 1530 static int errors = 0; variable
3150 static int errors = 0; variable
4042 static int errors = 0; variable
5298 static int errors = 0; variable
6190 static int errors = 0; variable
7082 static int errors = 0; variable
    [all...]
  /external/libxml2/
debugXML.c 49 int errors; /* number of errors found */ member in struct:_xmlDebugCtxt
63 ctxt->errors = 0;
160 ctxt->errors++;
170 ctxt->errors++;
180 ctxt->errors++;
292 /* desactivated right now as it raises too many errors */
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_shader.h 282 error_map errors; member in class:r600_sb::shader
  /external/python/cpython2/Modules/_ctypes/
callproc.c 264 PyErr_SetFromWindowsErr(). However, for some errors, we have additional
1691 char *coding, *mode, *errors, *encoding=NULL; local
    [all...]
  /external/python/cpython2/Modules/cjkcodecs/
multibytecodec.c 25 "I.encode(unicode[, errors]) -> (string, length consumed)\n\
27 Return an encoded string version of `unicode'. errors may be given to\n\
29 encoding errors raise a UnicodeEncodeError. Other possible values are\n\
34 "I.decode(string[, errors]) -> (unicodeobject, length consumed)\n\
36 Decodes `string' using I, an MultibyteCodec instance. errors may be given\n\
38 that encoding errors raise a UnicodeDecodeError. Other possible values\n\
42 static char *codeckwarglist[] = {"input", "errors", NULL};
43 static char *incnewkwarglist[] = {"errors", NULL};
45 static char *streamkwarglist[] = {"stream", "errors", NULL};
79 internal_error_callback(const char *errors)
119 const char *errors; local
551 const char *errors = NULL; local
608 const char *data, *errors = NULL; local
920 char *errors = NULL; local
1129 char *errors = NULL; local
1445 char *errors = NULL; local
1647 char *errors = NULL; local
    [all...]
  /external/python/cpython3/Modules/cjkcodecs/
multibytecodec.c 32 static char *incnewkwarglist[] = {"errors", NULL};
33 static char *streamkwarglist[] = {"stream", "errors", NULL};
69 internal_error_callback(const char *errors)
71 if (errors == NULL || strcmp(errors, "strict") == 0)
73 else if (strcmp(errors, "ignore") == 0)
75 else if (strcmp(errors, "replace") == 0)
78 return PyUnicode_FromString(errors);
82 call_error_callback(PyObject *errors, PyObject *exc)
87 assert(PyUnicode_Check(errors));
113 const char *errors; local
931 char *errors = NULL; local
1149 char *errors = NULL; local
1492 char *errors = NULL; local
1721 char *errors = NULL; local
    [all...]
  /external/python/cpython3/Python/
pylifecycle.c 133 Py_SetStandardStreamEncoding(const char *encoding, const char *errors)
139 /* Can't call PyErr_NoMemory() on errors, as Python hasn't been
152 if (errors) {
153 _Py_StandardStreamErrors = _PyMem_RawStrdup(errors);
628 * XXX triggers a comedy of errors as subsystem after subsystem
1065 const char* encoding, const char* errors)
1095 Py_None, Py_None, /* encoding, errors */
1189 char *pythonioencoding = NULL, *encoding, *errors; local
    [all...]
  /external/selinux/libsemanage/src/
genhomedircon.c 875 int errors = 0; local
880 return errors;
891 errors = STATUS_ERR;
915 errors = STATUS_ERR;
927 return errors;
1121 int *errors)
1134 *errors = 0;
1172 *errors = STATUS_ERR;
1178 if (*errors) {
1203 int errors = 0 local
    [all...]
  /external/skqp/tests/
SkpSkGrTest.cpp 572 SkTArray<TestResult, true> errors; local
  /external/stressapptest/src/
sat.cc 620 "Only polling ECC errors.\n");
860 // Set maximum number of errors to collect. Stop running after this many.
876 // Inject errors to force miscompare code paths
1783 int64 errors = 0; local
1921 uint64 errors = GetTotalErrorCount(); local
    [all...]
sat.h 91 int errors() const { return errorcount_; } function in class:Sat
107 // Causes false errors for unittesting.
108 // Setting to "true" causes errors to be injected.
109 void set_error_injection(bool errors) { error_injection_ = errors; }
173 bool error_injection_; // Simulate errors, for unittests.
174 bool crazy_error_injection_; // Simulate lots of errors.
175 uint64 max_errorcount_; // Number of errors before forced exit.
235 bool error_poll_; // Poll for system errors.
256 int statuscount_; // Total test errors seen
    [all...]
  /external/wpa_supplicant_8/hostapd/
config_file.c 3832 int errors = 0; local
3915 int errors; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_module_tests.c 796 int errors = 0; local
806 errors++;
818 errors++;
824 if (!errors)
827 return errors;
942 int errors = 0; local
952 errors++;
962 errors++;
971 errors++;
982 errors++
1693 int errors = 0; local
1803 int errors = 0; local
2085 int errors = 0; local
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
zerrors_windows.go 6 // Go names for Windows errors.
12 // Windows reserves errors >= 1<<29 for application use.
150 // Error strings for invented errors
151 var errors = [...]string{ var
  /prebuilts/go/linux-x86/src/syscall/
zerrors_windows.go 6 // Go names for Windows errors.
12 // Windows reserves errors >= 1<<29 for application use.
150 // Error strings for invented errors
151 var errors = [...]string{ var
  /system/core/init/
property_service.cpp 788 auto errors = std::vector<std::string>{}; local
789 ParsePropertyInfoFile(file_contents, property_infos, &errors);
790 // Individual parsing errors are reported but do not cause a failed boot, which is what
792 for (const auto& error : errors) {
  /system/core/logcat/tests/
logcat_test.cpp 163 size_t errors = retry; local
173 errors = retry;
175 } else if (--errors <= 0) {
    [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 166 /** number of errors during processing */
167 private AtomicInteger errors = new AtomicInteger(0); field in class:Main
270 errors.set(0);
597 int count = errors.incrementAndGet();
606 throw new InterruptedException("Too many errors");
622 int errorNum = errors.get();
789 errors.incrementAndGet();
836 errors.incrementAndGet();
    [all...]
  /prebuilts/devtools/tools/lib/
junit-4.12.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
junit-4.12.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.12/
junit-4.12.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.10/
junit-4.10.jar 
  /prebuilts/tools/common/m2/repository/junit/junit-dep/4.10/
junit-dep-4.10.jar 
  /external/owasp/sanitizer/lib/junit/
junit-dep.jar 
  /prebuilts/tools/common/m2/repository/org/parboiled/parboiled-core/1.0.2/
parboiled-core-1.0.2.jar 

Completed in 1426 milliseconds

<<11121314151617181920>>