HomeSort by relevance Sort by last modified time
    Searched defs:failed (Results 76 - 100 of 391) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/e2fsprogs/lib/ext2fs/
tst_iscan.c 36 int failed = 0; variable
55 failed++;
185 failed++;
197 failed++;
220 if (!failed)
222 return failed;
  /external/lldb/source/Commands/
CommandObjectDisassemble.cpp 450 bool failed = false; local
463 failed = true;
468 failed = true;
470 if (failed)
520 result.AppendErrorWithFormat ("Failed to disassemble memory at 0x%8.8" PRIx64 ".\n", m_options.start_addr);
567 result.AppendErrorWithFormat ("Failed to disassemble memory at 0x%8.8" PRIx64 ".\n", m_options.start_addr);
  /external/mesa3d/src/glx/apple/
apple_glx_context.c 562 bool failed; local
565 failed =
568 apple_glx_diagnostic("%s: surface recreation failed? %s\n", __func__,
569 failed ? "YES" : "NO");
  /frameworks/base/test-runner/src/android/test/
TestPrinter.java 81 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); method
98 failed(test, t); method
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3recognizersharedstate.h 98 * has failed to match. Reset to false upon valid token match.
100 ANTLR3_BOOLEAN failed; member in struct:ANTLR3_RECOGNIZER_SHARED_STATE_struct
  /external/chromium_org/chrome/browser/autocomplete/
history_url_provider.h 130 // performed because the history system failed to properly init the database.
133 bool failed; member in struct:HistoryURLProviderParams
  /external/chromium_org/chrome/browser/chromeos/net/
cert_verify_proc_chromeos_unittest.cc 138 net::NSSCertDatabase::ImportCertFailureList failed; local
140 root_1_, net::NSSCertDatabase::TRUSTED_SSL, &failed));
141 EXPECT_EQ(0U, failed.size());
154 failed.clear();
156 root_2_, net::NSSCertDatabase::TRUSTED_SSL, &failed));
157 EXPECT_EQ(0U, failed.size());
253 net::NSSCertDatabase::ImportCertFailureList failed; local
255 db_2_->ImportCACerts(roots, net::NSSCertDatabase::TRUSTED_SSL, &failed));
256 EXPECT_EQ(0U, failed.size());
318 net::NSSCertDatabase::ImportCertFailureList failed; local
331 net::NSSCertDatabase::ImportCertFailureList failed; local
    [all...]
  /external/chromium_org/chrome/browser/devtools/
devtools_network_transaction.h 56 bool failed() const { return failed_; } function in class:DevToolsNetworkTransaction
  /external/chromium_org/chrome/browser/
process_singleton_browsertest.cc 199 DLOG_IF(ERROR, num_tries >= kNbTries) << "Failed to kill all processes!";
229 bool failed = false; local
230 for (size_t attempt = 0; attempt < kNbAttempts && !failed; ++attempt) {
300 // last one standing should be left waiting... So we failed...
302 failed) << "There is more than one main process.";
305 failed = true;
  /external/chromium_org/chrome/test/base/
module_system_test.cc 78 bool failed() { return failed_; } function in class:ModuleSystemTest::AssertNatives
192 EXPECT_FALSE(assert_natives_->failed());
  /external/chromium_org/components/domain_reliability/
context_unittest.cc 85 unsigned successful, failed; local
86 context_.GetQueuedDataForTesting(index, NULL, &successful, &failed);
87 return successful == expected_successful && failed == expected_failed;
  /external/chromium_org/content/browser/android/in_process/
synchronous_compositor_factory_impl.cc 186 bool failed = false; local
195 failed = !offscreen_context_for_main_thread_.get() ||
199 if (failed) {
  /external/chromium_org/ipc/
ipc_channel_win.cc 164 bool failed = !it.ReadInt(&claimed_pid); local
166 if (!failed && validate_client_) {
168 failed = it.ReadInt(&secret) ? (secret != client_secret_) : true;
171 if (failed) {
234 LOG(WARNING) << "DuplicateHandle failed. Error :" << GetLastError();
  /external/chromium_org/net/cert/
nss_cert_database_unittest.cc 69 // Don't try to cleanup if the setup failed.
306 NSSCertDatabase::ImportCertFailureList failed; local
308 &failed));
310 EXPECT_EQ(0U, failed.size());
337 NSSCertDatabase::ImportCertFailureList failed; local
339 &failed));
341 EXPECT_EQ(0U, failed.size());
368 NSSCertDatabase::ImportCertFailureList failed; local
370 &failed));
372 EXPECT_EQ(0U, failed.size())
399 NSSCertDatabase::ImportCertFailureList failed; local
419 NSSCertDatabase::ImportCertFailureList failed; local
444 NSSCertDatabase::ImportCertFailureList failed; local
483 NSSCertDatabase::ImportCertFailureList failed; local
505 NSSCertDatabase::ImportCertFailureList failed; local
530 NSSCertDatabase::ImportCertFailureList failed; local
559 NSSCertDatabase::ImportCertFailureList failed; local
594 NSSCertDatabase::ImportCertFailureList failed; local
625 NSSCertDatabase::ImportCertFailureList failed; local
660 NSSCertDatabase::ImportCertFailureList failed; local
696 NSSCertDatabase::ImportCertFailureList failed; local
738 NSSCertDatabase::ImportCertFailureList failed; local
817 NSSCertDatabase::ImportCertFailureList failed; local
877 NSSCertDatabase::ImportCertFailureList failed; local
941 NSSCertDatabase::ImportCertFailureList failed; local
1017 NSSCertDatabase::ImportCertFailureList failed; local
    [all...]
  /external/chromium_org/ppapi/thunk/
enter.h 111 bool failed() const { return !succeeded(); } function in class:ppapi::thunk::subtle::EnterBase
235 bool failed() const { return !functions_; } function in class:ppapi::thunk::EnterInstance
283 bool failed() const { return !functions_; } function in class:ppapi::thunk::EnterInstanceAPI
  /external/chromium_org/testing/gtest/include/gtest/
gtest-test-part.h 53 kNonFatalFailure, // Failed but the test can continue.
54 kFatalFailure // Failed and the test should be terminated.
93 // Returns true iff the test part failed.
94 bool failed() const { return type_ != kSuccess; } function in class:testing::TestPartResult
96 // Returns true iff the test part non-fatally failed.
99 // Returns true iff the test part fatally failed.
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
FetchManager.cpp 36 void failed();
88 failed();
93 failed();
98 failed();
128 void FetchManager::Loader::failed() function in class:WebCore::FetchManager::Loader
135 m_resolver->reject(V8ThrowException::createTypeError("Failed to fetch", state->isolate()));
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
gtest-test-part.h 53 kNonFatalFailure, // Failed but the test can continue.
54 kFatalFailure // Failed and the test should be terminated.
91 // Returns true iff the test part failed.
92 bool failed() const { return type_ != kSuccess; } function in class:testing::TestPartResult
94 // Returns true iff the test part non-fatally failed.
97 // Returns true iff the test part fatally failed.
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/test/
test_util_fft.c 18 /* Number of tests that failed */
30 /* Number of tests that unexpectedly failed */
105 printf(" *FAILED: %s ", id);
108 printf("**FAILED: %s ", id);
128 printf("%sSummary: %d %s tests failed out of %d tests. "
189 int failed; local
204 failed = forward_results.failed_count_ + inverse_results.failed_count_;
210 printf("%sTotal: %d tests failed out of %d tests. "
212 failed ? "**" : "",
213 failed,
    [all...]
  /external/chromium_org/third_party/re2/re2/testing/
dfa_test.cc 208 bool matched, failed = false; local
211 NULL, &failed, NULL);
212 CHECK(!failed);
216 NULL, &failed, NULL);
217 CHECK(!failed);
243 bool matched, failed = false; local
246 NULL, &failed, NULL);
247 CHECK(!failed);
251 NULL, &failed, NULL);
252 CHECK(!failed);
332 bool failed = false; local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrConfigConversionEffect.cpp 191 bool failed = true; local
193 for (size_t i = 0; i < SK_ARRAY_COUNT(kConversionRules) && failed; ++i) {
239 failed = false;
240 for (int y = 0; y < 256 && !failed; ++y) {
243 failed = true;
249 if (failed) {
  /external/chromium_org/tools/android/forwarder2/
daemon.cc 55 bool failed = false; local
62 failed = true;
68 failed = true;
73 return !failed;
235 bool failed = false; local
241 failed = true;
244 if (!failed)
249 failed = true;
251 return !failed;
  /external/clang/test/SemaTemplate/
instantiate-field.cpp 37 struct failed ;
39 template <class Model> struct requirement<failed *Model::*>
41 static void failed() function in struct:PR7123::requirement
47 template <class Model> struct requirement_<void(*)(Model)> : requirement<failed *Model::*>
64 instantiate< requirement_<void(*)(usage_requirements<BidirectionalIterator>)>::failed> int534; // expected-note{{in instantiation of}}
  /external/gtest/include/gtest/
gtest-test-part.h 53 kNonFatalFailure, // Failed but the test can continue.
54 kFatalFailure // Failed and the test should be terminated.
93 // Returns true iff the test part failed.
94 bool failed() const { return type_ != kSuccess; } function in class:testing::TestPartResult
96 // Returns true iff the test part non-fatally failed.
99 // Returns true iff the test part fatally failed.
  /external/icu/icu4c/source/i18n/
cpdtrans.cpp 285 UBool failed = FALSE; local
303 failed = TRUE;
309 // if memory allocation failed delete backwards trans array
310 if (failed && i > 0) {
352 UBool failed = FALSE; local
356 failed = TRUE;
360 if (failed && i > 0) {

Completed in 2683 milliseconds

1 2 34 5 6 7 8 91011>>