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

/frameworks/base/tests/backup/
H A Dbackup_helper_test.cpp81 int failed = 0; local
92 failed++;
93 printf("failed\n");
103 if (failed == 0) {
106 printf("Tests failed: (%d of %d)\n", failed, testCount);
/frameworks/base/test-runner/src/android/test/
H A DTestPrinter.java81 public void failed(String className, Throwable exception) { method in class:TestPrinter
82 Log.i(mTag, "failed: " + className);
88 private void failed(Test test, Throwable t) { method in class:TestPrinter
90 failed(test.toString(), t);
94 failed(test, t);
98 failed(test, t);
H A DTestRunner.java125 failed(test.toString(), t);
130 failed(test.toString(), t);
158 void failed(String className, Throwable execption); method in interface:TestRunner.Listener
216 public void failed(String className, Throwable exception) { method in class:TestRunner
220 mListeners.get(i).failed(className, exception);
273 failed(className, e);
326 failed(className, e);
363 failed(test.toString(), e);
516 failed(test.toString(), excep);
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DInstrumentationTestSuiteBuilderTest.java99 public boolean failed(String testName) { method in class:InstrumentationTestSuiteBuilderTest.SuiteExecutionRecorder
108 return saw(testName) && !failed(testName) && !errored(testName);
H A DUnitTestSuiteBuilderTest.java92 public boolean failed(String testName) { method in class:UnitTestSuiteBuilderTest.SuiteExecutionRecorder
101 return saw(testName) && !failed(testName) && !errored(testName);
H A DTestSuiteBuilderTest.java76 assertTrue(recorder.failed("FailingTest.testFailOne"));
77 assertTrue(recorder.failed("FailingTest.testFailTwo"));
201 public boolean failed(String testName) { method in class:TestSuiteBuilderTest.SuiteExecutionRecorder
210 return saw(testName) && !failed(testName) && !errored(testName);
/frameworks/base/media/jni/
H A Dandroid_media_Utils.cpp34 bool failed = false; local
37 failed = (nKeyValuePairs != env->GetArrayLength(values));
40 if (!failed) {
41 failed = ((keys != NULL && values == NULL) ||
45 if (failed) {
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DLayoutTestsAutoTest.java62 public void failed(String layout_file) { method in class:MyTestRecorder
256 Log.w("Layout test: ", file + " failed");
257 mResultRecorder.failed(file);
/frameworks/base/tools/aapt/
H A DZipFile.cpp99 ALOGD("fopen failed: %d\n", err);
313 ALOGD("initFromCDE failed\n");
328 ALOGD("EOCD check read failed\n");
333 ALOGD("EOCD read check failed\n");
416 bool failed = false; local
419 ALOGD("compression failed, storing\n");
420 failed = true;
432 failed = true;
436 if (failed) {
443 /* handle "no compression" request, or failed compressio
[all...]
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp247 bool failed = false; local
262 failed = true;
272 if (failed) {
831 bool failed = true; local
849 failed = false;
863 failed = false;
868 if (failed) {
870 "failed on file '%s'.\n", filename);
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp224 ALOGW("idmap assertion failed: size=%d bytes\n", (int)sizeBytes);
228 ALOGW("idmap assertion failed: invalid magic found (is 0x%08x, expected 0x%08x)\n",
3051 ALOGW("Requesting resource %p failed because it is complex\n",
3173 //printf("*** get failed! unlocking\n");
4479 bool failed = false; local
4485 while (pos < end && !failed) {
4513 failed = true;
4520 if (!failed) {
4545 bool failed = collectString(outString, s, len, preserveSpaces, &errorMsg); local
4549 return failed;
[all...]
/frameworks/compile/mclinker/utils/gtest/src/
H A Dgtest-all.cpp924 // Gets the number of failed test cases.
937 // Gets the number of failed tests.
955 // Returns true iff the unit test failed (i.e. some test case failed
956 // or something outside of all tests failed).
1083 // thrown during a test, this test is considered to be failed, but
1494 "True iff a failed assertion should be a debugger break-point.");
1579 "When this flag is specified, a failed assertion will throw an exception "
1632 // Returns true iff the test case failed.
2012 // Gets the number of failed tes
5499 bool failed = false; local
[all...]
/frameworks/compile/mclinker/utils/gtest/include/
H A Dgtest.h2011 GTEST_LOG_(FATAL) << "Condition " #condition " failed. "
2020 GTEST_LOG_(FATAL) << #posix_call << "failed with error " \
2988 // the conversion, "(failed to convert from wide string)" is
16748 // Returns true iff the test part failed.
16749 bool failed() const { return type_ != kSuccess; } function in class:testing::TestPartResult
16751 // Returns true iff the test part non-fatally failed.
16754 // Returns true iff the test part fatally failed.
17160 // When this flag is specified, a failed assertion will throw an
17213 // remembers a non-empty message that describes how it failed.
17233 // Then the failed expectatio
[all...]

Completed in 403 milliseconds