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

<<11121314151617181920>>

  /external/valgrind/perf/
fbench.c 41 exquisitely sensitive to errors. The performance of this
59 Special note regarding errors in accuracy: this program has
83 encounter errors, please remember that they are just as likely
704 int i, j, k, errors; local
837 errors = 0;
848 printf("(Errors) ");
853 errors++;
861 if (errors > 0) {
863 errors, errors > 1 ? "s" : "")
    [all...]
  /external/webrtc/webrtc/tools/frame_analyzer/
video_quality_analysis.cc 100 bool errors = false; local
117 errors = true;
120 return !errors;
130 bool errors = false; local
171 errors = true;
175 return !errors;
  /external/wpa_supplicant_8/wpa_supplicant/
config_file.c 129 int errors = 0; local
135 errors++;
159 errors++;
162 return errors;
169 int errors = 0, end = 0; local
192 errors++;
201 errors++;
207 errors++;
213 errors++;
216 errors += wpa_config_validate_network(ssid, *line)
230 int errors = 0, end = 0; local
370 int errors = 0, line = 0; local
    [all...]
config_winreg.c 53 int errors = 0; local
98 errors++;
105 errors++;
115 return errors ? -1 : 0;
203 int errors = 0; local
226 errors++;
235 errors++;
249 errors++;
255 errors++;
279 return errors ? -1 : 0
290 int errors = 0; local
376 int errors = 0; local
441 int errors = 0; local
638 int i, errors = 0; local
835 int i, errors = 0; local
990 int errors = 0; local
    [all...]
ctrl_iface_named_pipe.c 68 int errors; member in struct:wpa_ctrl_dst
511 dst->errors++;
512 if (dst->errors > 10)
515 dst->errors = 0;
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
DsaTest.java 690 int errors = 0; local
    [all...]
  /frameworks/base/tests/Compatibility/src/com/android/compatibilitytest/
AppCompatibility.java 156 List<String> errors = mAppErrors.get(packageName); local
157 for (int i = 0; i < MAX_NUM_CRASH_SNIPPET && i < errors.size(); i++) {
158 String err = errors.get(i);
163 if (errors.size() > MAX_NUM_CRASH_SNIPPET) {
164 message.append(String.format("\n... %d more errors omitted ...",
165 errors.size() - MAX_NUM_CRASH_SNIPPET));
258 * Launches and activity and queries for errors.
283 List<String> errors; local
285 errors = mAppErrors.get(pkgName);
287 errors = new ArrayList<>()
    [all...]
  /frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
SimpleCompilationTest.java 69 assertTrue("there should not be any errors", StringUtils.isEmpty(result.error));
79 assertTrue("there should not be any errors " + result.error,
332 List<ScopedException> errors = ScopedException.extractErrors(result.error); local
333 assertEquals(result.error, 1, errors.size());
334 final ScopedException ex = errors.get(0);
353 List<ScopedException> errors = ScopedException.extractErrors(result.error); local
354 assertEquals(result.error, 1, errors.size());
355 final ScopedException ex = errors.get(0);
373 assertTrue("there should not be any errors " + result.error,
  /libcore/ojluni/src/main/java/java/net/
URLClassLoader.java 272 * and errors are not caught. Calling close on an already closed
291 List<IOException> errors = ucp.closeLoaders(); local
301 errors.add(ioex);
307 if (errors.isEmpty()) {
311 IOException firstex = errors.remove(0);
315 for (IOException error: errors) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFixTest.java 93 List<String> errors = new ArrayList<String>(); local
98 // the real aapt errors are there. But when the test is run directly, aapt has
101 // etc) so instead this test just hardcodes the aapt errors that should be
103 assertEquals("Unit test is hardcoded to errors for quickfix1.xml", "quickfix1.xml", name);
104 errors.add(filePath + ":7: error: Error: No resource found that matches the given name"
106 errors.add(filePath + ":7: error: Error: No resource found that matches the given name"
108 errors.add(filePath + ":13: error: Error: No resource found that matches the given name"
110 AaptParser.parseOutput(errors, project);
215 List<String> errors = new ArrayList<String>(); local
218 assertEquals("Unit test is hardcoded to errors for quickfix2.xml", "quickfix2.xml", name)
    [all...]
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/3.1.0/
sisu-guice-3.1.0-no_aop.jar 
  /art/libartbase/base/
hash_set.h 440 // Deal with rounding errors. Add one for rounding.
472 // Make sure that everything reinserts in the right spot. Returns the number of errors.
474 size_t errors = 0; variable
484 ++errors;
489 return errors;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_pyio.py 43 encoding=None, errors=None,
109 errors is an optional string that specifies how encoding errors are to
113 errors. (Note that ignoring encoding errors can lead to data loss.)
161 if errors is not None and not isinstance(errors, basestring):
162 raise TypeError("invalid errors: %r" % errors)
184 if binary and errors is not None:
1346 def errors(self): member in class:TextIOBase
1538 def errors(self): member in class:TextIOWrapper
1997 def errors(self): member in class:StringIO
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarReport.java 67 int errors; field in class:GrammarReport.ReportData
245 data.errors = ErrorManager.getErrorState().errors;
464 buf.append("Number of errors: ");
465 buf.append(data.errors);
  /external/boringssl/src/crypto/err/
err.c 145 // errors contains the ERR_NUM_ERRORS most recent errors, organised as a ring
147 struct err_error_st errors[ERR_NUM_ERRORS]; member in struct:err_state_st
155 // previously a |data| pointer of one of the elements of |errors|.
195 err_clear(&state->errors[i]);
239 error = &state->errors[i];
336 err_clear(&state->errors[i]);
628 error = &state->errors[state->top];
656 error = &state->errors[state->top];
746 state->errors[state->top].mark = 1
785 struct err_error_st *errors; member in struct:err_save_state_st
    [all...]
  /external/doclava/src/com/google/doclava/
PackageInfo.java 220 ClassInfo.makeLinkListHDF(data, base + ".errors", errors());
268 public ClassInfo[] errors() { method in class:PackageInfo
271 Converter.convertClasses(mPackage.errors())));
522 Errors.error(Errors.REMOVED_DEPRECATED_CLASS, cInfo.position(),
525 Errors.error(Errors.REMOVED_CLASS, cInfo.position(),
537 Errors.error(Errors.ADDED_CLASS, cInfo.position(), "Added class " + cInfo.name(
    [all...]
  /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...]
  /external/guice/extensions/throwingproviders/test/com/google/inject/throwingproviders/
ThrowingProviderTest.java 725 List<Message> errors = ImmutableList.copyOf(ce.getErrorMessages()); local
729 errors.get(0).getMessage());
733 errors.get(1).getMessage());
734 assertEquals(2, errors.size());
  /external/icu/icu4c/source/test/intltest/
uts46test.cpp 129 errln("T.nameToASCII(www.example.com) info.errors=%04lx result matches=%d %s",
156 errln("N.labelToASCII(label-with-dot) failed with errors %04lx - %s",
229 errln("notSTD3.nameToUnicode(non-LDH ASCII) unexpected errors %04lx string %s",
243 errln("notSTD3.nameToUnicode(equiv to non-LDH ASCII) unexpected errors %04lx string %s",
253 uint32_t errors; member in struct:TestCase
479 // hyphen errors and empty-label errors
619 // ToUnicode does not set length-overflow errors.
620 uint32_t uniErrors=testCase.errors&~
626 errln("N.nameToUnicode([%d] %s) unexpected errors %04lx"
    [all...]
  /external/libcups/cups/
http-support.c 404 * Nul-terminate the URI buffer and return with no errors...
1514 static const char * const errors[] = \/* Error strings *\/ local
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_validate.c 103 struct hash_table *errors; member in struct:__anon29339
118 char *msg = ralloc_asprintf(state->errors, "error: %s (%s:%d)",
121 _mesa_hash_table_insert(state->errors, obj, msg);
1120 struct hash_table *errors = state->errors; local
    [all...]
  /external/python/cpython2/Lib/
_pyio.py 45 encoding=None, errors=None,
111 errors is an optional string that specifies how encoding errors are to
115 errors. (Note that ignoring encoding errors can lead to data loss.)
163 if errors is not None and not isinstance(errors, basestring):
164 raise TypeError("invalid errors: %r" % errors)
186 if binary and errors is not None
1362 def errors(self): member in class:TextIOBase
1559 def errors(self): member in class:TextIOWrapper
2028 def errors(self): member in class:StringIO
    [all...]
  /external/python/cpython3/Lib/
_pyio.py 40 def open(file, mode="r", buffering=-1, encoding=None, errors=None,
111 errors is an optional string that specifies how encoding errors are to
115 errors. (Note that ignoring encoding errors can lead to data loss.)
173 if errors is not None and not isinstance(errors, str):
174 raise TypeError("invalid errors: %r" % errors)
200 if binary and errors is not None
1788 def errors(self): member in class:TextIOBase
2003 def errors(self): member in class:TextIOWrapper
2522 def errors(self): member in class:StringIO
    [all...]
nntplib.py 110 """4xx errors"""
114 """5xx errors"""
310 errors = 'surrogateescape' variable in class:_NNTPBase
425 line = line.encode(self.encoding, self.errors)
447 Raise various errors if the response indicates an error.
451 resp = resp.decode(self.encoding, self.errors)
463 Raise various errors if the response indicates an error.
526 return resp, [line.decode(self.encoding, self.errors)
    [all...]
  /external/python/cpython3/Modules/clinic/
_codecsmodule.c.h 46 "encode($module, /, obj, encoding=\'utf-8\', errors=\'strict\')\n"
51 "The default encoding is \'utf-8\'. errors may be given to set a\n"
53 "errors raise a ValueError. Other possible values are \'ignore\', \'replace\'\n"
62 const char *errors);
68 static const char * const _keywords[] = {"obj", "encoding", "errors", NULL};
72 const char *errors = NULL; local
75 &obj, &encoding, &errors)) {
78 return_value = _codecs_encode_impl(module, obj, encoding, errors);
85 "decode($module, /, obj, encoding=\'utf-8\', errors=\'strict\')\n"
90 "Default encoding is \'utf-8\'. errors may be given to set a\n
111 const char *errors = NULL; local
167 const char *errors = NULL; local
201 const char *errors = NULL; local
230 const char *errors = NULL; local
259 const char *errors = NULL; local
294 const char *errors = NULL; local
329 const char *errors = NULL; local
364 const char *errors = NULL; local
399 const char *errors = NULL; local
435 const char *errors = NULL; local
471 const char *errors = NULL; local
506 const char *errors = NULL; local
541 const char *errors = NULL; local
577 const char *errors = NULL; local
613 const char *errors = NULL; local
647 const char *errors = NULL; local
681 const char *errors = NULL; local
715 const char *errors = NULL; local
749 const char *errors = NULL; local
786 const char *errors = NULL; local
825 const char *errors = NULL; local
865 const char *errors = NULL; local
902 const char *errors = NULL; local
936 const char *errors = NULL; local
965 const char *errors = NULL; local
994 const char *errors = NULL; local
1023 const char *errors = NULL; local
1053 const char *errors = NULL; local
1082 const char *errors = NULL; local
1111 const char *errors = NULL; local
1141 const char *errors = NULL; local
1170 const char *errors = NULL; local
1199 const char *errors = NULL; local
1228 const char *errors = NULL; local
1257 const char *errors = NULL; local
1286 const char *errors = NULL; local
1315 const char *errors = NULL; local
1372 const char *errors = NULL; local
1404 const char *errors = NULL; local
1438 const char *errors = NULL; local
1473 const char *errors; local
    [all...]

Completed in 1085 milliseconds

<<11121314151617181920>>