Home
last modified time | relevance | path

Searched refs:getBody (Results 1 – 22 of 22) sorted by relevance

/expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/
H A DArgumentsNotificationContentBuilder.java43 .setBody(getBody(payload)) in setPayload()
93 protected JSONObject getBody(ReadableArguments payload) { in getBody() method in ArgumentsNotificationContentBuilder
H A DJSONNotificationContentBuilder.java41 .setBody(getBody(payload)) in setPayload()
126 protected JSONObject getBody(JSONObject payload) { in getBody() method in JSONNotificationContentBuilder
H A DRemoteMessageSerializer.java52 serializedNotification.putString("body", notification.getBody()); in toBundle()
H A DNotificationSerializer.java72 serializedContent.putBundle("data", toBundle(content.getBody())); in toBundle()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/notifications/
H A DArgumentsNotificationContentBuilder.java43 .setBody(getBody(payload)) in setPayload()
93 protected JSONObject getBody(ReadableArguments payload) { in getBody() method in ArgumentsNotificationContentBuilder
H A DJSONNotificationContentBuilder.java41 .setBody(getBody(payload)) in setPayload()
126 protected JSONObject getBody(JSONObject payload) { in getBody() method in JSONNotificationContentBuilder
H A DRemoteMessageSerializer.java52 serializedNotification.putString("body", notification.getBody()); in toBundle()
H A DNotificationSerializer.java72 serializedContent.putBundle("data", toBundle(content.getBody())); in toBundle()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/notifications/
H A DArgumentsNotificationContentBuilder.java43 .setBody(getBody(payload)) in setPayload()
93 protected JSONObject getBody(ReadableArguments payload) { in getBody() method in ArgumentsNotificationContentBuilder
H A DJSONNotificationContentBuilder.java41 .setBody(getBody(payload)) in setPayload()
126 protected JSONObject getBody(JSONObject payload) { in getBody() method in JSONNotificationContentBuilder
H A DRemoteMessageSerializer.java52 serializedNotification.putString("body", notification.getBody()); in toBundle()
H A DNotificationSerializer.java72 serializedContent.putBundle("data", toBundle(content.getBody())); in toBundle()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/notifications/
H A DArgumentsNotificationContentBuilder.java43 .setBody(getBody(payload)) in setPayload()
93 protected JSONObject getBody(ReadableArguments payload) { in getBody() method in ArgumentsNotificationContentBuilder
H A DJSONNotificationContentBuilder.java41 .setBody(getBody(payload)) in setPayload()
126 protected JSONObject getBody(JSONObject payload) { in getBody() method in JSONNotificationContentBuilder
H A DRemoteMessageSerializer.java52 serializedNotification.putString("body", notification.getBody()); in toBundle()
H A DNotificationSerializer.java72 serializedContent.putBundle("data", toBundle(content.getBody())); in toBundle()
/expo/android/tools/src/main/java/host/exp/exponent/tools/
H A DReactAndroidCodeTransformer.java450 n.getBody().ifPresent(body -> { in mapBlockStatement()
459 BlockStmt body = n.getBody(); in mapBlockStatement()
496 n.getBody().get().toString() + "\n" +
566 n.getBody().ifPresent(body -> {
577 n.getBody().ifPresent(body -> {
/expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/
H A DExpoNotificationBuilder.java89 if (content.getBody() != null) { in createBuilder()
92 extras.putString(EXTRAS_BODY_KEY, content.getBody().toString()); in createBuilder()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/notifications/presentation/builders/
H A DExpoNotificationBuilder.java89 if (content.getBody() != null) { in createBuilder()
92 extras.putString(EXTRAS_BODY_KEY, content.getBody().toString()); in createBuilder()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/notifications/presentation/builders/
H A DExpoNotificationBuilder.java89 if (content.getBody() != null) { in createBuilder()
92 extras.putString(EXTRAS_BODY_KEY, content.getBody().toString()); in createBuilder()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/notifications/presentation/builders/
H A DExpoNotificationBuilder.java89 if (content.getBody() != null) { in createBuilder()
92 extras.putString(EXTRAS_BODY_KEY, content.getBody().toString()); in createBuilder()
/expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/
H A DNotificationContent.java92 public JSONObject getBody() { in getBody() method in NotificationContent