Searched refs:MAX_CHARSEQUENCE_LENGTH (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/app/
H A DNotificationCompat.java652 private static final int MAX_CHARSEQUENCE_LENGTH = 5 * 1024; field in class:NotificationCompat.Builder
1583 if (cs.length() > MAX_CHARSEQUENCE_LENGTH) {
1584 cs = cs.subSequence(0, MAX_CHARSEQUENCE_LENGTH);
/frameworks/base/core/java/android/app/
H A DNotification.java198 private static final int MAX_CHARSEQUENCE_LENGTH = 5 * 1024; field in class:Notification
2410 if (cs.length() > MAX_CHARSEQUENCE_LENGTH) {
2411 cs = cs.subSequence(0, MAX_CHARSEQUENCE_LENGTH);

Completed in 406 milliseconds