Searched defs:failed (Results 1 - 25 of 222) sorted by relevance

123456789

/external/testng/src/test/java/test/reports/
H A DFailedSampleTest.java8 public void failed() { method in class:FailedSampleTest
/external/testng/src/main/java/org/testng/
H A DSuiteRunState.java19 public synchronized void failed() { method in class:SuiteRunState
/external/autotest/client/site_tests/platform_ToolchainTests/src/
H A Dclang-fortify-driver.cpp55 bool failed = false; local
61 failed = true;
68 failed = true;
71 return failed ? 1 : 0;
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/
H A D25-2.c37 int i, failed = 0; local
51 failed++;
54 printf("mq_maxmsg %ld failed as expected\n",
62 failed++;
81 failed++;
84 printf("mq_msgsize %ld failed as expected\n",
92 failed++;
101 if (failed > 0) {
/external/mockito/src/main/java/org/mockito/internal/runners/util/
H A DFailureDetector.java11 * Implementation of JUnit run listener that knows when any of the tests failed
15 private boolean failed; field in class:FailureDetector
20 failed = true;
24 return !failed;
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognizerSharedState.as33 * has failed to match. Reset to false upon valid token match.
35 public var failed:Boolean = false; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRecognizerSharedState.h37 BOOL failed; // indicate that some match failed variable
55 @property (assign, getter=getFailed, setter=setFailed:) BOOL failed; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRecognizerSharedState.h37 BOOL failed; // indicate that some match failed variable
55 @property (assign, getter=getFailed, setter=setFailed:) BOOL failed; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRecognizerSharedState.h37 BOOL failed; // indicate that some match failed variable
55 @property (assign, getter=getFailed, setter=setFailed:) BOOL failed; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRecognizerSharedState.h38 BOOL failed; // indicate that some match failed variable
56 @property (assign, getter=getFailed, setter=setFailed:) BOOL failed; variable
/external/boringssl/src/crypto/test/
H A Dfile_test_gtest.cc92 bool failed = false; local
94 if (test_result->GetTestPartResult(i).failed()) {
95 failed = true;
101 if (failed) {
/external/dagger2/producers/src/main/java/dagger/producers/
H A DProduced.java56 * are failed with equal exceptions.
71 * Returns a failed {@code Produced}, whose {@link #get} will throw an
74 public static <T> Produced<T> failed(Throwable throwable) { method in class:Produced
/external/dagger2/producers/src/main/java/dagger/producers/monitoring/
H A DProducerMonitor.java35 * <li>{@link #failed(Throwable)} if the method threw an exception.
40 * <li>{@link #failed(Throwable)} if the method threw an exception, or returned normally and the
41 * future failed.
45 * <p>If any input to the monitored producer fails, {@link #failed(Throwable)} will be called
46 * immediately with the failed input's exception. If more than one input fails, an arbitrary failed
80 * Called when the producer's future has failed with an exception.
85 public void failed(Throwable t) {} method in class:ProducerMonitor
102 failed(t);
/external/jemalloc/msvc/projects/vc2015/test_threads/
H A Dtest_threads.cpp84 bool failed = leaked > 65536; // in case C++ runtime allocated something (e.g. iostream locale or facet) local
85 printf("\nTest %s!\n", (failed ? "FAILED" : "successful"));
88 return failed ? 1 : 0;
/external/junit/src/main/java/org/junit/rules/
H A DTestWatchman.java19 * public void failed(Throwable e, FrameworkMethod method) {
58 failed(e, method);
76 public void failed(Throwable e, FrameworkMethod method) { method in class:TestWatchman
/external/libmojo/base/android/
H A Dscoped_java_ref.cc19 int failed = env_->PushLocalFrame(kDefaultLocalFrameCapacity); local
20 DCHECK(!failed);
25 int failed = env_->PushLocalFrame(capacity); local
26 DCHECK(!failed);
/external/mesa3d/src/util/
H A Droundeven_test.c68 bool failed = false; local
83 failed = true;
101 failed = true;
117 failed = true;
135 failed = true;
139 return failed;
/external/mockito/src/test/java/org/concurrentmockito/
H A DThreadsRunAllTestsHalfManualTest.java67 private Set<Class<?>> failed = new HashSet<Class<?>>(); field in class:ThreadsRunAllTestsHalfManualTest.AllTestsRunner
135 failed.add(failure.getDescription().getTestClass());
141 return failed;
148 assertEquals("Run in multiple thread failed for tests", Collections.emptySet(), runInMultipleThreads(3));
161 Set<Class<?>> failed = new HashSet<Class<?>>();
164 failed.addAll(t.getFailed());
167 return failed;
173 Set<Class<?>> failed = runInMultipleThreads(numberOfThreads);
176 System.out.println("Finished tests in " + numberOfThreads + " threads in " + executionTime + " seconds. (" + failed.size() + " tests failed)");
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DRouteDatabase.java23 * A blacklist of failed routes to avoid when creating a new connection to a
32 public synchronized void failed(Route failedRoute) { method in class:RouteDatabase
41 /** Returns true if {@code route} has failed recently and should be avoided. */
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DRpcController.java64 * After a call has finished, returns true if the call failed. The possible
65 * reasons for failure depend on the RPC implementation. {@code failed()}
69 boolean failed(); method in interface:RpcController
72 * If {@code failed()} is {@code true}, returns a human-readable description
82 * will indicate that the call failed at that time.
91 * Causes {@code failed()} to return true on the client side. {@code reason}
/external/python/cpython2/Lib/test/
H A Dtest_frozen.py14 self.fail("import __hello__ failed:" + str(x)) namespace
19 self.fail("import __phello__ failed:" + str(x)) namespace
24 self.fail("import __phello__.spam failed:" + str(x)) namespace
31 self.fail("import __phello__.foo should have failed") namespace
/external/skqp/tests/
H A DAnimatedImageTest.cpp124 bool failed = false; local
139 failed = true;
144 if (failed) {
151 ERRORF(r, "reset failed");
158 if (failed) {
167 ERRORF(r, "reset failed for image %s from frame %i",
169 failed = true;
175 ERRORF(r, "failed to match frame %i in %s on iteration %i",
177 failed = true;
184 if (failed) {
[all...]
/external/testng/src/test/java/test/invocationcount/
H A DFailedInvocationCountTest.java11 int passed, int failed, int skipped)
22 Assert.assertEquals(tla.getFailedTests().size(), failed);
10 runTest(boolean skip, int passed, int failed, int skipped) argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRecognizerSharedState.cs81 * has failed to match. Reset to false upon valid token match.
84 public bool failed; field in class:Antlr.Runtime.RecognizerSharedState
167 failed = state.failed;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DRecognizerSharedState.cs83 * has failed to match. Reset to false upon valid token match.
86 public bool failed; field in class:Antlr.Runtime.RecognizerSharedState
171 failed = state.failed;

Completed in 3958 milliseconds

123456789