/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/ |
D | notification.h | 65 class Notification { 68 Notification() : notified_yet_(false) {} in Notification() function 69 explicit Notification(bool prenotify) : notified_yet_(prenotify) {} in Notification() function 70 Notification(const Notification&) = delete; 71 Notification& operator=(const Notification&) = delete; 72 ~Notification();
|
D | notification.cc | 27 void Notification::Notify() { in Notify() 42 Notification::~Notification() { in ~Notification() 48 void Notification::WaitForNotification() const { in WaitForNotification() 56 bool Notification::WaitForNotificationWithTimeout( in WaitForNotificationWithTimeout() 67 bool Notification::WaitForNotificationWithDeadline(absl::Time deadline) const { in WaitForNotificationWithDeadline()
|
D | notification_test.cc | 56 Notification* notification, in RunWorker() 69 static void BasicTests(bool notify_before_waiting, Notification* notification) { in BasicTests() 127 Notification local_notification1, local_notification2; in TEST()
|
D | lifetime_test.cc | 42 absl::Notification* notification, bool* state) { in ThreadOne() 60 absl::Notification* notification, bool* state) { in ThreadTwo() 79 absl::Notification notification; in RunTests()
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | notification_test.dart | 8 class MyNotification extends Notification { } 11 testWidgets('Notification basics - toString', (WidgetTester tester) async { 15 testWidgets('Notification basics - dispatch', (WidgetTester tester) async { 34 final Notification notification = MyNotification(); 39 testWidgets('Notification basics - cancel', (WidgetTester tester) async { 58 final Notification notification = MyNotification(); 63 testWidgets('Notification basics - listener null return value', (WidgetTester tester) async {
|
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
D | notification_listener.dart | 7 /// Signature for [Notification] listeners. 13 typedef NotificationListenerCallback<T extends Notification> = bool Function(T notification); 26 abstract class Notification { 29 const Notification(); 33 /// The [Notification] class implementation of this method dispatches the 34 /// given [Notification] to each ancestor [NotificationListener] widget. 44 if (widget is NotificationListener<Notification>) { 75 /// the [Notification] base class calls [debugFillDescription] to collect 85 /// A widget that listens for [Notification]s bubbling up the tree. 90 /// To dispatch notifications, use the [Notification.dispatch] method. [all …]
|
D | scroll_notification.dart | 12 /// Mixin for [Notification]s that track how many [RenderAbstractViewport] they 16 mixin ViewportNotificationMixin on Notification { 41 /// A [Notification] related to scrolling.
|
D | size_changed_layout_notifier.dart | 50 /// * [Notification], the base class for notifications that bubble through the
|
/third_party/vk-gl-cts/android/package/src/com/drawelements/deqp/execserver/ |
D | ExecService.java | 27 import android.app.Notification; 28 import android.app.Notification.Builder; 101 Notification.Builder builder = new Notification.Builder(this, channel); in onStartCommand() 102 Notification notification = builder.setContentIntent(pm) in onStartCommand()
|
/third_party/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-port.h | 1172 class Notification { 1174 Notification() : notified_(false) { 1177 ~Notification() { 1206 GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification); 1248 class GTEST_API_ Notification { 1250 Notification(); 1257 GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification); 1305 ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start) 1335 Notification* const thread_can_start_; 1483 ThreadWithParamBase(Runnable *runnable, Notification* thread_can_start); [all …]
|
/third_party/googletest/googletest/include/gtest/internal/ |
D | gtest-port.h | 1189 class Notification { 1191 Notification() : notified_(false) { 1194 ~Notification() { 1223 GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification); 1265 class GTEST_API_ Notification { 1267 Notification(); 1274 GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification); 1322 ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start) 1352 Notification* const thread_can_start_; 1500 ThreadWithParamBase(Runnable *runnable, Notification* thread_can_start); [all …]
|
/third_party/mesa3d/src/gtest/src/ |
D | gtest-port.cc | 323 Notification::Notification() in Notification() function in testing::internal::Notification 331 void Notification::Notify() { in Notify() 335 void Notification::WaitForNotification() { in WaitForNotification() 468 Notification* thread_can_start) { in CreateThread() 488 ThreadMainParam(Runnable* runnable, Notification* thread_can_start) in ThreadMainParam() 494 Notification* thread_can_start_; 515 Notification* thread_can_start) in ThreadWithParamBase()
|
/third_party/googletest/googletest/src/ |
D | gtest-port.cc | 325 Notification::Notification() in Notification() function in testing::internal::Notification 333 void Notification::Notify() { in Notify() 337 void Notification::WaitForNotification() { in WaitForNotification() 470 Notification* thread_can_start) { in CreateThread() 490 ThreadMainParam(Runnable* runnable, Notification* thread_can_start) in ThreadMainParam() 496 Notification* thread_can_start_; 517 Notification* thread_can_start) in ThreadWithParamBase()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/ |
D | spinlock_test_common.cc | 224 static void NotifyThenLock(Notification* locked, SpinLock* spinlock, in TEST() 231 static void LockThenWait(Notification* locked, SpinLock* spinlock, in TEST() 239 Notification locked; in TEST()
|
/third_party/googletest/googletest/test/ |
D | gtest_stress_test.cc | 45 using internal::Notification; 122 Notification threads_can_start; in TEST()
|
D | googletest-output-test_.cc | 50 using testing::internal::Notification; 292 Notification n1; 293 Notification n2; 294 Notification n3;
|
/third_party/googletest/googletest/include/gtest/internal/custom/ |
D | README.md | 38 * `GTEST_HAS_NOTIFICATION_` - Enabled if Notification is already provided.
|
/third_party/mesa3d/src/gtest/include/gtest/internal/custom/ |
D | README.md | 38 * `GTEST_HAS_NOTIFICATION_` - Enabled if Notification is already provided.
|
/third_party/skia/third_party/externals/oboe/include/oboe/ |
D | Definitions.h | 288 Notification = 5, // AAUDIO_USAGE_NOTIFICATION enumerator
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
D | cordz_update_tracker_test.cc | 113 absl::Notification done; in TEST()
|
D | cordz_sample_token_test.cc | 144 Notification stop; in TEST()
|
D | cordz_handle_test.cc | 180 Notification stop; in TEST()
|
/third_party/unity/extras/fixture/ |
D | readme.md | 12 # Dependency Notification
|
/third_party/cef/patch/patches/ |
D | web_contents_1257_1565.patch | 120 + // Notification that |render_frame_host| for this WebContents has gained
|
/third_party/skia/third_party/externals/oboe/src/common/ |
D | Utilities.cpp | 210 case Usage::Notification: return "Notification"; in convertToText()
|