Home
last modified time | relevance | path

Searched refs:handleNotification (Results 1 – 25 of 38) sorted by relevance

12

/expo/packages/expo-notifications/android/src/test/java/expo/modules/notifications/service/delegates/
H A DExpoHandlingDelegateTest.kt39 fun `handleNotification when in foreground invokes listener and does not present`() { in handleNotification when in foreground invokes listener and does not present()
43 delegateSpy.handleNotification(expectedNotification) in handleNotification when in foreground invokes listener and does not present()
49 fun `handleNotification when in background does not invoke listener and presents notification`() { in handleNotification when in background does not invoke listener and presents notification()
53 delegateSpy.handleNotification(expectedNotification) in handleNotification when in background does not invoke listener and presents notification()
60 fun `handleNotification when in background with title only presents notification`() { in handleNotification when in background with title only presents notification()
64 delegateSpy.handleNotification(expectedNotification) in handleNotification when in background with title only presents notification()
71 fun `handleNotification when in background with text only presents notification`() { in handleNotification when in background with text only presents notification()
75 delegateSpy.handleNotification(expectedNotification) in handleNotification when in background with text only presents notification()
82 fun `handleNotification when in background and data only does not present notification`() { in handleNotification when in background and data only does not present notification()
85 delegateSpy.handleNotification( in handleNotification when in background and data only does not present notification()
/expo/ios/vendored/sdk47/@shopify/react-native-skia/ios/RNSkia-iOS/
H A DABI47_0_0RNSkiOSPlatformContext.h31 static void handleNotification(CFNotificationCenterRef center, void *observer, CFStringRef name, co…
42 &handleNotification, in ABI47_0_0RNSkiOSPlatformContext()
71 static void handleNotification(CFNotificationCenterRef center, void *observer, CFStringRef name, in handleNotification() function
/expo/ios/vendored/sdk48/@shopify/react-native-skia/ios/RNSkia-iOS/
H A DABI48_0_0RNSkiOSPlatformContext.h31 static void handleNotification(CFNotificationCenterRef center, void *observer,
43 CFNotificationCenterGetLocalCenter(), this, &handleNotification, in ABI48_0_0RNSkiOSPlatformContext()
72 static void handleNotification(CFNotificationCenterRef center, void *observer, in handleNotification() function
/expo/ios/vendored/unversioned/@shopify/react-native-skia/ios/RNSkia-iOS/
H A DRNSkiOSPlatformContext.h27 static void handleNotification(CFNotificationCenterRef center, void *observer,
39 CFNotificationCenterGetLocalCenter(), this, &handleNotification, in RNSkiOSPlatformContext()
78 static void handleNotification(CFNotificationCenterRef center, void *observer, in handleNotification() function
/expo/ios/vendored/sdk49/@shopify/react-native-skia/ios/RNSkia-iOS/
H A DABI49_0_0RNSkiOSPlatformContext.h27 static void handleNotification(CFNotificationCenterRef center, void *observer,
39 CFNotificationCenterGetLocalCenter(), this, &handleNotification, in ABI49_0_0RNSkiOSPlatformContext()
78 static void handleNotification(CFNotificationCenterRef center, void *observer, in handleNotification() function
/expo/packages/expo-notifications/src/
H A DNotificationsHandler.ts26 handleNotification: (notification: Notification) => Promise<NotificationBehavior>; property
105 const behavior = await handler.handleNotification(notification);
/expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/service/interfaces/
H A DHandlingDelegate.kt7 fun handleNotification(notification: Notification) method
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/service/interfaces/
H A DHandlingDelegate.kt7 fun handleNotification(notification: Notification) method
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/service/interfaces/
H A DHandlingDelegate.kt7 fun handleNotification(notification: Notification) method
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/service/interfaces/
H A DHandlingDelegate.kt7 fun handleNotification(notification: Notification) method
/expo/packages/expo-notifications/build/
H A DNotificationsHandler.d.ts20 handleNotification: (notification: Notification) => Promise<NotificationBehavior>;
H A DNotificationsHandler.js61 const behavior = await handler.handleNotification(notification);
H A DNotificationsHandler.js.map1handleNotification: (notification: Notification) => Promise<NotificationBehavior>;\n /**\n * A …
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/DevSupport/
H A DABI47_0_0RCTPackagerClient.h28 - (void)handleNotification:(NSDictionary<NSString *, id> *)params;
H A DABI47_0_0RCTPackagerConnection.mm213 [handler handleNotification:notification];
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/DevSupport/
H A DABI49_0_0RCTPackagerClient.h28 - (void)handleNotification:(NSDictionary<NSString *, id> *)params;
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/DevSupport/
H A DABI48_0_0RCTPackagerClient.h28 - (void)handleNotification:(NSDictionary<NSString *, id> *)params;
/expo/packages/expo-branch/ios/EXBranch/RNBranch/
H A DRNBranchEventEmitter.m52 selector:@selector(handleNotification:)
103 - (void)handleNotification:(NSNotification *)notification {
/expo/docs/pages/push-notifications/
H A Dreceiving-notifications.mdx43 …ations/#handling-incoming-notifications-when-the-app-is) with the `handleNotification()` callback …
51 handleNotification: async () => ({
/expo/apps/native-component-list/src/screens/
H A DExpoApisScreen.tsx11 handleNotification: async () => ({
/expo/apps/test-suite/tests/
H A DNotifications.js135 handleNotification: async (notification) => { method
824 handleNotification: async () => ({
1062 handleNotification: async (event) => { method
1086 handleNotification: async (event) => { method
1123 handleNotification: async (event) => { method
1160 handleNotification: async (event) => { method
1498 handleNotification: handleNotificationSpy, property
1584 handleNotification: async () => ({
1664 handleNotification: async () => { method
1723 handleNotification: async () => { method
[all …]
/expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/service/delegates/
H A DExpoHandlingDelegate.kt108 override fun handleNotification(notification: Notification) { in <lambda>() method in expo.modules.notifications.service.delegates.ExpoHandlingDelegate
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/service/delegates/
H A DExpoHandlingDelegate.kt108 override fun handleNotification(notification: Notification) { in <lambda>() method in abi47_0_0.expo.modules.notifications.service.delegates.ExpoHandlingDelegate
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/service/delegates/
H A DExpoHandlingDelegate.kt108 override fun handleNotification(notification: Notification) { in <lambda>() method in abi49_0_0.expo.modules.notifications.service.delegates.ExpoHandlingDelegate
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/service/delegates/
H A DExpoHandlingDelegate.kt108 override fun handleNotification(notification: Notification) { in <lambda>() method in abi48_0_0.expo.modules.notifications.service.delegates.ExpoHandlingDelegate

12