Searched defs:succeeded (Results 1 - 25 of 51) sorted by relevance

123

/external/skia/src/utils/win/
H A DSkAutoCoInitialize.cpp30 bool SkAutoCoInitialize::succeeded() { function in class:SkAutoCoInitialize
/external/google-breakpad/android/sample_app/jni/
H A Dtest_breakpad.cpp39 bool succeeded) {
41 return succeeded;
37 DumpCallback(const google_breakpad::MinidumpDescriptor& descriptor, void* context, bool succeeded) argument
/external/google-breakpad/src/processor/testdata/
H A Dlinux_test_app.cc56 bool succeeded) {
57 if (succeeded) {
64 return succeeded;
54 callback(const char *dump_path, const char *id, void *context, bool succeeded) argument
H A Dtest_app.cc44 bool succeeded) {
45 if (succeeded) {
52 return succeeded;
41 callback(const wchar_t *dump_path, const wchar_t *id, void *context, EXCEPTION_POINTERS *exinfo, MDRawAssertionInfo *assertion, bool succeeded) argument
/external/dagger2/producers/src/main/java/dagger/producers/monitoring/
H A DProducerMonitor.java34 * <li>{@link #succeeded(Object)} if the method returned normally; or
39 * <li>{@link #succeeded(Object)} if the method returned normally, and the future succeeded; or
77 public void succeeded(Object o) {} method in class:ProducerMonitor
97 succeeded(value);
/external/junit/src/org/junit/rules/
H A DTestWatcher.java24 * protected void succeeded(Description d) {
48 succeeded(description);
66 protected void succeeded(Description description) { method in class:TestWatcher
H A DTestWatchman.java25 * public void succeeded(FrameworkMethod method) {
54 succeeded(method);
72 public void succeeded(FrameworkMethod method) { method in class:TestWatchman
/external/libchrome/base/win/
H A Dscoped_com_initializer.h44 if (succeeded())
48 bool succeeded() const { return SUCCEEDED(hr_); } function in class:base::win::ScopedCOMInitializer
/external/libbrillo/brillo/streams/
H A Dstream_unittest.cc101 bool succeeded = false; local
103 auto success_callback = [&read_size, &succeeded](size_t size) {
105 succeeded = true;
124 EXPECT_FALSE(succeeded);
150 bool succeeded = false; local
152 auto success_callback = [&succeeded](size_t /* size */) { succeeded = true; };
170 EXPECT_FALSE(succeeded);
185 EXPECT_TRUE(succeeded);
190 bool succeeded local
240 bool succeeded = false; local
391 bool succeeded = false; local
[all...]
H A Dfile_stream_unittest.cc1029 bool succeeded = false; local
1036 auto success_callback = [&succeeded, &buffer](size_t size) {
1039 succeeded = true;
1064 auto end_condition = [&failed, &succeeded] { return failed || succeeded; };
1069 EXPECT_TRUE(succeeded);
1078 bool succeeded = false; local
1087 auto success_callback = [&succeeded, &data](int read_fd, size_t /* size */) {
1091 succeeded = true;
1104 auto end_condition = [&failed, &succeeded] { retur
[all...]
/external/google-breakpad/src/client/solaris/handler/
H A Dexception_handler_test.cc97 bool succeeded) {
94 MinidumpCallback(const char *dump_path, const char *minidump_id, void *context, bool succeeded) argument
/external/libbrillo/brillo/
H A Dbackoff_entry.cc23 void BackoffEntry::InformOfRequest(bool succeeded) { argument
24 if (!succeeded) {
/external/libchrome/sandbox/win/src/sidestep/
H A Dmini_disassembler.cpp202 bool succeeded = true; local
204 return succeeded;
291 succeeded = false;
319 return succeeded;
/external/libweave/src/
H A Dbackoff_entry.cc22 void BackoffEntry::InformOfRequest(bool succeeded) { argument
23 if (!succeeded) {
H A Ddevice_registration_info_unittest.cc179 bool succeeded = false; local
180 auto callback = [&succeeded, &error](ErrorPtr in_error) {
185 succeeded = true;
188 return succeeded;
367 bool succeeded = false; local
368 auto callback = [&succeeded, this](const base::DictionaryValue& info,
374 succeeded = true;
377 EXPECT_TRUE(succeeded);
/external/protobuf/src/google/protobuf/compiler/
H A Dplugin.cc140 bool succeeded = generator->Generate( local
143 if (!succeeded && error.empty()) {
/external/v8/test/cctest/
H A Dtest-fast-dtoa.cc233 int succeeded = 0; local
247 succeeded++;
251 CHECK_GT(succeeded*1.0/total, 0.99);
262 int succeeded = 0; local
280 succeeded++;
289 CHECK_GT(succeeded*1.0/total, 0.85);
/external/google-breakpad/src/client/windows/unittests/
H A Dexception_handler_nesting_test.cc90 // succeeded indicates whether a minidump file was successfully written.
101 // should normally return the value of |succeeded|, or when they wish to
103 // return true directly (unless |succeeded| is true).
115 bool succeeded) {
118 succeeded &&
110 MinidumpWrittenCallback(const wchar_t* dump_path, const wchar_t* minidump_id, void* context, EXCEPTION_POINTERS* exinfo, MDRawAssertionInfo* assertion, bool succeeded) argument
H A Dexception_handler_test.cc103 bool succeeded);
168 bool succeeded) {
173 return succeeded;
163 DumpCallback(const wchar_t* dump_path, const wchar_t* minidump_id, void* context, EXCEPTION_POINTERS* exinfo, MDRawAssertionInfo* assertion, bool succeeded) argument
H A Dexception_handler_death_test.cc108 bool succeeded) {
109 if (succeeded && DoesPathExist(dump_path)) {
117 return succeeded;
103 MinidumpWrittenCallback(const wchar_t* dump_path, const wchar_t* minidump_id, void* context, EXCEPTION_POINTERS* exinfo, MDRawAssertionInfo* assertion, bool succeeded) argument
/external/valgrind/drd/
H A Ddrd_semaphore.c427 const Bool succeeded)
426 semaphore_post_post(const DrdThreadId tid, const Addr semaphore, const Bool succeeded) argument
/external/dagger2/producers/src/main/java/dagger/producers/monitoring/internal/
H A DMonitors.java132 public void succeeded(Object o) { method in class:Monitors.NonThrowingProducerMonitor
134 delegate.succeeded(o);
136 logProducerMonitorArgMethodException(e, delegate, "succeeded", o);
251 public void succeeded(Object o) { method in class:Monitors.DelegatingProducerMonitor
254 delegate.succeeded(o);
256 logProducerMonitorArgMethodException(e, delegate, "succeeded", o);
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineInplaceLU.h102 /** \returns true if the factorization succeeded */
103 inline bool succeeded(void) const { function in class:Eigen::SkylineInplaceLU
/external/google-breakpad/src/client/windows/tests/crash_generation_app/
H A Dcrash_generation_app.cc185 bool succeeded) {
191 succeeded ? TEXT("succeeded") : TEXT("failed"));
197 return succeeded;
180 ShowDumpResults(const wchar_t* dump_path, const wchar_t* minidump_id, void* context, EXCEPTION_POINTERS* exinfo, MDRawAssertionInfo* assertion, bool succeeded) argument
/external/webrtc/webrtc/modules/desktop_capture/win/
H A Dscreen_capturer_win_magnifier.cc111 bool succeeded = false; local
121 succeeded = CaptureImage(rect);
125 if (!succeeded) {

Completed in 579 milliseconds

123