/external/clang/tools/scan-build/ |
scan-build | 62 Diag ("Preprocessed versions of these sources were deposited in '$Dir/failures'.\n"); 493 if (scalar(@files) == 0 and ! -e "$Dir/failures") { 504 # Scan the failures directory and use the information in the .info files 506 my @failures; 508 if (-d "$Dir/failures") { 509 opendir(DIR, "$Dir/failures"); 510 @failures = grep { /[.]info.txt$/ && !/attribute_ignored/; } readdir(DIR); 512 opendir(DIR, "$Dir/failures"); 515 foreach my $file (@failures) { 516 open IN, "$Dir/failures/$file" or DieDiag("cannot open $file\n") [all...] |
/external/icu4c/test/intltest/ |
plurfmts.cpp | 564 const char *failures[] = { local 571 int len = sizeof(failures)/sizeof(failures[0]); 575 UnicodeString fmt(failures[i], -1, US_INV);
|
testidna.cpp | 1465 const char* failures[] ={ variable [all...] |
/external/openssh/ |
auth.h | 55 int failures; member in struct:Authctxt 198 #define AUTH_FAIL_MSG "Too many authentication failures for %.100s"
|
auth.c | 265 authctxt->failures >= options.max_authtries / 2 ||
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
gUnitExecutor.java | 72 public List<AbstractTest> failures; field in class:gUnitExecutor 98 failures = new ArrayList<AbstractTest>(); 140 testResultST.setAttribute("failure", failures); 203 failures.add(test); 216 failures.add(test); 222 failures.add(test);
|
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
port.cc | 706 << " ping failures and " 828 size_t failures; local 829 for (failures = 0; failures < pings_since_last_response_.size(); ++failures) { 830 if (pings_since_last_response_[failures] > when) { 836 << " ms, failures=" << failures;
|
/external/valgrind/main/tests/ |
vg_regtest.in | 148 my @failures; # List of failed tests 371 push(@failures, sprintf("%-40s ($mid)", "$fullname")); 585 foreach my $failure (@failures) {
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
printing_unittest.py | 134 failures = [] 136 failures = [test_failures.FailureTimeout()] 138 failures = [test_failures.FailureCrash()] 140 return test_results.TestResult(path, failures=failures, test_run_time=run_time) 318 result = self.get_result('failures/expected/missing_text.html') 321 result = self.get_result('failures/expected/missing_check.html') 324 result = self.get_result('failures/expected/missing_image.html') 338 tests = ['passes/text.html', 'failures/expected/timeout.html', 339 'failures/expected/crash.html' [all...] |
/external/webkit/Tools/Scripts/webkitpy/common/net/buildbot/ |
buildbot.py | 173 # current_build can't possibly have any failures in common 180 failures = set(results.failing_tests()) 182 common_failures = failures 184 common_failures = common_failures.intersection(failures) 186 # current_build doesn't have any failures in common with 188 # failures in current_build were due to flakiness. 197 # Current build must either be green or have no failures in common
|
/external/webkit/Source/JavaScriptCore/jit/ |
JITPropertyAccess.cpp | 56 JumpList failures; local 57 failures.append(jit.branchPtr(NotEqual, Address(regT0), TrustedImmPtr(globalData->jsStringVPtr))); 58 failures.append(jit.branchTest32(NonZero, Address(regT0, OBJECT_OFFSETOF(JSString, m_fiberCount)))); 66 failures.append(jit.branch32(AboveOrEqual, regT1, regT2)); 71 failures.append(jit.branch32(AboveOrEqual, regT0, TrustedImm32(0x100))); 76 failures.link(&jit); [all...] |
JITInlineMethods.h | 85 ALWAYS_INLINE void JIT::emitLoadCharacterString(RegisterID src, RegisterID dst, JumpList& failures) 87 failures.append(branchPtr(NotEqual, Address(src), TrustedImmPtr(m_globalData->jsStringVPtr))); 88 failures.append(branchTest32(NonZero, Address(src, OBJECT_OFFSETOF(JSString, m_fiberCount)))); 89 failures.append(branch32(NotEqual, MacroAssembler::Address(src, ThunkHelpers::jsStringLengthOffset()), TrustedImm32(1)));
|
JITPropertyAccess32_64.cpp | 273 JumpList failures; local 274 failures.append(jit.branchPtr(NotEqual, Address(regT0), TrustedImmPtr(globalData->jsStringVPtr))); 275 failures.append(jit.branchTest32(NonZero, Address(regT0, OBJECT_OFFSETOF(JSString, m_fiberCount)))); 283 failures.append(jit.branch32(AboveOrEqual, regT2, regT1)); 288 failures.append(jit.branch32(AboveOrEqual, regT0, TrustedImm32(0x100))); 294 failures.link(&jit); [all...] |
/external/v8/test/mjsunit/ |
bit-not.js | 67 // Try to test that we can deal with allocation failures in
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
flakytestreporter.py | 127 failure_messages = [failure.message() for failure in flaky_result.failures]
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/ |
EasAccountService.java | 103 // Fallbacks (in minutes) for ping loop failures 840 Integer failures = errorMap.get(serverId); local [all...] |
/external/antlr/antlr-3.4/runtime/Python/ |
xmlrunner.py | 133 stream.write('<testsuite errors="%(e)d" failures="%(f)d" ' % \ 134 { "e": len(self.errors), "f": len(self.failures) }) 251 self._try_test_run(TestTest, """<testsuite errors="0" failures="0" name="unittest.TestSuite" tests="0" time="0.000"> 265 self._try_test_run(TestTest, """<testsuite errors="0" failures="0" name="unittest.TestSuite" tests="1" time="0.000"> 280 self._try_test_run(TestTest, """<testsuite errors="0" failures="1" name="unittest.TestSuite" tests="1" time="0.000"> 297 self._try_test_run(TestTest, """<testsuite errors="1" failures="0" name="unittest.TestSuite" tests="1" time="0.000"> 314 self._try_test_run(TestTest, """<testsuite errors="0" failures="0" name="unittest.TestSuite" tests="1" time="0.000"> 330 self._try_test_run(TestTest, """<testsuite errors="0" failures="0" name="unittest.TestSuite" tests="1" time="0.000">
|
/packages/experimental/RpcPerformance/src/com/android/rpc_performance/ |
ProviderPerfActivity.java | 344 int failures = 0; local 349 failures++; 358 Log.v(TAG, "dummy loop: fails=" + failures + "; total=" + total + "; goodavg ms=" + averageMillis);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-junit.jar | |
/external/chromium/testing/gmock/test/ |
gmock-spec-builders_test.cc | 1057 ::testing::TestPartResultArray failures; local 1059 ::testing::ScopedFakeTestPartResultReporter reporter(&failures); 1061 // Now 'failures' contains the Google Test failures generated by 1066 ASSERT_EQ(1, failures.size()); 1067 const ::testing::TestPartResult& r = failures.GetTestPartResult(0); [all...] |
/external/dbus/dbus/ |
dbus-auth.c | 216 int failures; /**< Number of times client has been rejected */ member in struct:__anon6007 [all...] |
/external/webkit/Tools/Scripts/ |
run-qtwebkit-tests | 375 <input type="button" value="Show failures only" onclick="hide()"/>
|
/external/chromium/net/data/proxy_resolver_v8_unittest/ |
pac_library_unittest.js | 2 // Otherwise it will output "PROXY failure:<num-failures>".
|
/external/chromium/sdch/open-vcdiff/src/gtest/ |
gtest.cc | 138 " should catch exceptions and treat them as test failures."); 521 << " Actual: " << results.size() << " failures"; 2713 int failures = 0; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar | |