/external/protobuf/src/google/protobuf/ |
reflection_ops.cc | 220 vector<string>* errors) { 228 errors->push_back(prefix + descriptor->field(i)->name()); 248 errors); 254 errors);
|
/external/valgrind/main/gdbserver_tests/ |
mssnapshot.stderrB.exp | 6 v.info all_errors : show all errors found so far 9 v.info n_errs_found [msg] : show the nr of errors found so far and the given msg
|
/external/valgrind/main/memcheck/tests/linux/ |
timerfd-syscall.stderr.exp | 55 For counts of detected and suppressed errors, rerun with: -v 56 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
|
/external/valgrind/main/memcheck/tests/ |
partial_load_dflt.stderr.exp | 33 For counts of detected and suppressed errors, rerun with: -v 34 ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 0 from 0)
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
fileobject.h | 43 PyAPI_FUNC(int) PyFile_SetEncodingAndErrors(PyObject *, const char *, char *errors);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
dep_util.py | 11 from distutils.errors import DistutilsFileError
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_spawn.py | 9 from distutils.errors import DistutilsExecError
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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)
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
fileobject.h | 43 PyAPI_FUNC(int) PyFile_SetEncodingAndErrors(PyObject *, const char *, char *errors);
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
dep_util.py | 11 from distutils.errors import DistutilsFileError
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_spawn.py | 9 from distutils.errors import DistutilsExecError
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/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/chromium_org/extensions/common/ |
extension_l10n_util.cc | 28 namespace errors = extensions::manifest_errors; 51 errors::kLocalesInvalidLocale, 117 *error = errors::kInvalidDefaultLocale; 139 *error = errors::kInvalidName; 178 *error = errors::kInvalidFileBrowserHandler; 193 *error = errors::kInvalidInputComponents; 359 *error = errors::kLocalesNoValidLocaleNamesListed;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
feedparser.py | 26 from email import errors namespace 176 root.defects.append(errors.MultipartInvariantViolationDefect()) 219 # necessary in the older parser, which could raise errors. All 289 self._cur.defects.append(errors.NoBoundaryInMultipartDefect()) 393 self._cur.defects.append(errors.StartBoundaryNotFoundDefect()) 444 defect = errors.FirstHeaderLineIsContinuationDefect(line) 472 defect = errors.MisplacedEnvelopeHeaderDefect(line) 478 defect = errors.MalformedHeaderDefect(line)
|
header.py | 19 from email.errors import HeaderParseError 71 An email.errors.HeaderParseError may be raised when certain decoding error 151 continuation_ws=' ', errors='strict'): 175 errors is passed through to the .append() call. 187 self.append(s, charset, errors) 237 def append(self, s, charset=None, errors='strict'): 255 Optional `errors' is passed as the third argument to any unicode() or 271 ustr = unicode(s, incodec, errors) 276 ustr.encode(outcodec, errors) 284 s = s.encode(outcodec, errors) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
feedparser.py | 26 from email import errors namespace 176 root.defects.append(errors.MultipartInvariantViolationDefect()) 219 # necessary in the older parser, which could raise errors. All 289 self._cur.defects.append(errors.NoBoundaryInMultipartDefect()) 393 self._cur.defects.append(errors.StartBoundaryNotFoundDefect()) 444 defect = errors.FirstHeaderLineIsContinuationDefect(line) 472 defect = errors.MisplacedEnvelopeHeaderDefect(line) 478 defect = errors.MalformedHeaderDefect(line)
|
header.py | 19 from email.errors import HeaderParseError 71 An email.errors.HeaderParseError may be raised when certain decoding error 151 continuation_ws=' ', errors='strict'): 175 errors is passed through to the .append() call. 187 self.append(s, charset, errors) 237 def append(self, s, charset=None, errors='strict'): 255 Optional `errors' is passed as the third argument to any unicode() or 271 ustr = unicode(s, incodec, errors) 276 ustr.encode(outcodec, errors) 284 s = s.encode(outcodec, errors) [all...] |
/libcore/luni/src/test/java/libcore/xml/ |
NormalizeTest.java | 456 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors); 477 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors); 496 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors); 517 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors); 538 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors); 600 private final List<DOMError> errors = new ArrayList<DOMError>(); field in class:NormalizeTest.ErrorRecorder 603 errors.add(error); 608 assertAllErrors("Expected one or more " + type + " errors", severity, type); 612 assertFalse(message, errors.isEmpty()); 613 for (DOMError error : errors) { [all...] |
/external/chromium_org/third_party/icu/source/common/ |
uts46.cpp | 39 // Severe errors which usually result in a U+FFFD replacement character in the result string. 234 if( dest.length()>=254 && (info.errors&UIDNA_ERROR_DOMAIN_NAME_TOO_LONG)==0 && 238 info.errors|=UIDNA_ERROR_DOMAIN_NAME_TOO_LONG; 319 info.errors|=UIDNA_ERROR_EMPTY_LABEL; 340 info.errors|=UIDNA_ERROR_DOMAIN_NAME_TOO_LONG; 343 info.errors|=info.labelErrors; 386 info.errors|=info.labelErrors; 392 info.errors|=info.labelErrors; 395 if( info.isBiDi && U_SUCCESS(errorCode) && (info.errors&severeErrors)==0 && 398 info.errors|=UIDNA_ERROR_BIDI [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
message.cc | 96 void Message::FindInitializationErrors(vector<string>* errors) const { 97 return ReflectionOps::FindInitializationErrors(*this, "", errors); 101 vector<string> errors; local 102 FindInitializationErrors(&errors); 103 return JoinStrings(errors, ", ");
|
/development/testrunner/ |
runtest.py | 45 import errors namespace 191 raise errors.AbortError 235 except errors.ParseError: 236 raise errors.AbortError 295 except errors.AbortError: 406 raise errors.AbortError 503 except errors.WaitForResponseTimedOutError: 508 except errors.AbortError, error: 511 except errors.WaitForResponseTimedOutError:
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
AppleObjCTrampolineHandler.cpp | 717 StreamString errors; local 1051 StreamString errors; local [all...] |
/external/chromium_org/v8/tools/gcmole/ |
gcmole.lua | 369 errors_found and "Errors found" or "No errors found") 375 local status, errors = pcall(CheckCorrectnessForArch, arch) 377 print(string.format("There was an error: %s", errors)) 378 errors = true 380 return errors 383 local errors = false 390 errors = SafeCheckCorrectnessForArch(arch, report) or errors 393 os.exit(errors and 1 or 0 [all...] |