Searched defs:failures (Results 1 - 25 of 68) sorted by last modified time

123

/external/srtp/test/
H A Drdbx_driver.c319 int failures; /* count number of failures */ local
326 failures = 0;
333 ++failures;
336 ++failures;
340 printf("number of failures: %d \n", failures);
H A Dreplay_driver.c184 int failures; /* count number of failures */ local
194 ++failures;
196 ++failures;
198 ++failures;
200 ++failures;
202 ++failures;
204 ++failures;
/external/skia/tools/
H A Dbench_pictures_main.cpp373 int failures = 0; local
378 ++failures;
383 ++failures;
390 return failures;
440 int failures = 0; local
442 failures += process_input(FLAGS_readPath[i], benchmark);
445 if (failures != 0) {
447 err.printf("Failed to run %i benchmarks.\n", failures);
H A Drender_pdfs_main.cpp195 int failures = 0; local
202 ++failures;
208 ++failures;
211 return failures;
268 int failures = 0; local
270 failures += process_input(inputs[i], outputDir, *renderer);
273 if (failures != 0) {
274 SkDebugf("Failed to render %i PDFs.\n", failures);
H A Drender_pictures_main.cpp385 int failures = 0; local
391 ++failures;
397 ++failures;
404 return failures;
473 int failures = 0; local
475 failures += process_input(FLAGS_readPath[i], &writePath, &mismatchPath, *renderer.get(),
478 if (failures != 0) {
479 SkDebugf("Failed to render %i pictures.\n", failures);
/external/skia/dm/
H A DDM.cpp195 static void report_failures(const SkTArray<SkString>& failures) { argument
196 if (failures.count() == 0) {
201 for (int i = 0; i < failures.count(); i++) {
202 SkDebugf(" %s\n", failures[i].c_str());
204 SkDebugf("%d failures.\n", failures.count());
272 SkTArray<SkString> failures; local
273 reporter.getFailures(&failures);
274 report_failures(failures);
275 return failures
[all...]
/external/skia/experimental/PdfViewer/
H A Dpdf_viewer_main.cpp296 int failures = 0; local
303 ++failures;
309 ++failures;
312 return failures;
330 int failures = 0; local
332 failures += process_input(FLAGS_readPath[i], outputDir);
337 if (failures != 0) {
338 SkDebugf("Failed to render %i PDFs.\n", failures);
/external/regex-re2/re2/testing/
H A Dexhaustive_tester.h43 int failures() { return failures_; } function in class:re2::ExhaustiveTester
H A Dsearch_test.cc306 int failures = 0; local
310 failures++;
322 EXPECT_EQ(failures, 0);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/protobuf/gtest/src/
H A Dgtest.cc180 " should catch exceptions and treat them as test failures.");
504 // results. Intercepts only failures from the current thread.
585 << " Actual: " << results.size() << " failures";
3150 // <-- individual assertion failures
3199 int failures = 0; local
3203 if (++failures == 1)
3217 if (failures == 0)
3227 " <testsuite name=\"%s\" tests=\"%d\" failures=\"%d\" "
3249 "<testsuites tests=\"%d\" failures=\"%d\" disabled=\"%d\" "
4502 " Turn assertion failures int
[all...]
/external/owasp/sanitizer/lib/junit/
H A Djunit-dep.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DRouteSelectorTest.java463 List<String> failures = new ArrayList<String>(); field in class:RouteSelectorTest.FakeProxySelector
477 failures.add(
/external/mesa3d/src/gtest/src/
H A Dgtest.cc196 " should catch exceptions and treat them as test failures.");
536 // results. Intercepts only failures from the current thread.
617 << " Actual: " << results.size() << " failures";
3190 // <-- individual assertion failures
3247 int failures = 0; local
3251 if (++failures == 1)
3265 if (failures == 0)
3275 " <testsuite name=\"%s\" tests=\"%d\" failures=\"%d\" "
3297 "<testsuites tests=\"%d\" failures=\"%d\" disabled=\"%d\" "
4207 // We want to preserve failures generate
[all...]
/external/llvm/utils/unittest/googletest/src/
H A Dgtest.cc196 " should catch exceptions and treat them as test failures.");
536 // results. Intercepts only failures from the current thread.
617 << " Actual: " << results.size() << " failures";
3162 // <-- individual assertion failures
3219 int failures = 0; local
3223 if (++failures == 1)
3237 if (failures == 0)
3247 " <testsuite name=\"%s\" tests=\"%d\" failures=\"%d\" "
3269 "<testsuites tests=\"%d\" failures=\"%d\" disabled=\"%d\" "
4175 // We want to preserve failures generate
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp5330 llvm::SmallVectorImpl <const DWARFDebugInfoEntry *> &failures)
5497 // unique them if everything matches up. Report failures.
5542 failures.push_back(dst_die);
5604 failures.push_back(dst_die);
5608 return (failures.size() != 0);
6603 llvm::SmallVector<const DWARFDebugInfoEntry *, 0> failures; local
6611 failures);
6613 // FIXME do something with these failures that's smarter than
5324 CopyUniqueClassMethodTypes(SymbolFileDWARF *src_symfile, Type *class_type, DWARFCompileUnit* src_cu, const DWARFDebugInfoEntry *src_class_die, DWARFCompileUnit* dst_cu, const DWARFDebugInfoEntry *dst_class_die, llvm::SmallVectorImpl <const DWARFDebugInfoEntry *> &failures) argument
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc120 // failure is reported. It can either intercept only failures that are
122 // all generated failures. The scope of this mock object can be controlled with
129 INTERCEPT_ONLY_CURRENT_THREAD, // Intercepts only thread local failures.
130 INTERCEPT_ALL_THREADS // Intercepts all failures.
135 // results. This reporter will only catch failures generated in the current
189 // to generate Google Test fatal failures. It verifies that the given
194 // affects and considers failures generated in the current thread and
246 // generate Google Test non-fatal failures. It asserts that the given
251 // affects and considers failures generated in the current thread and
1687 " should catch exceptions and treat them as test failures
4791 int failures = 0; local
[all...]
/external/junit/src/junit/framework/
H A DTestResult.java12 * The test framework distinguishes between <i>failures</i> and <i>errors</i>.
46 * Adds a failure to the list of failures. The passed in exception
96 * Gets the number of detected failures.
102 * Returns an Enumeration for the failures
104 public synchronized Enumeration<TestFailure> failures() { method in class:TestResult
/external/junit/src/org/junit/experimental/results/
H A DFailureList.java13 private final List<Failure> failures; field in class:FailureList
15 public FailureList(List<Failure> failures) { argument
16 this.failures= failures;
22 for (Failure failure : failures) {
H A DPrintableResult.java40 * A result that includes the given {@code failures}
42 public PrintableResult(List<Failure> failures) { argument
43 this(new FailureList(failures).result());
58 * Returns the number of failures in this result.
/external/jsoncpp/src/test_lib_json/
H A Djsontest.cpp358 std::deque<TestResult> failures; local
365 failures.push_back( result );
369 if ( failures.empty() )
379 for ( unsigned int index = 0; index < failures.size(); ++index )
381 TestResult &result = failures[index];
387 unsigned int failedCount = static_cast<unsigned int>( failures.size() );
/external/icu/icu4c/source/test/intltest/
H A Dplurfmts.cpp607 const char *failures[] = { local
614 int len = sizeof(failures)/sizeof(failures[0]);
618 UnicodeString fmt(failures[i], -1, US_INV);
H A Dtestidna.cpp1465 const char* failures[] ={ variable
1491 for (i=0; i<(int)(sizeof(failures)/sizeof(failures[0])); i++){
1493 source.append( UnicodeString(failures[i], -1, US_INV) );
H A Dusettest.cpp291 int32_t failures = 0; local
301 if (++failures == 10) break;
312 if (++failures == 20) break;

Completed in 3394 milliseconds

123