Home
last modified time | relevance | path

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

/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
DStringUtil.java2947 String str = unicodePreservingSubstring(source, 0, maxLength); in truncateIfNecessary()
2997 return unicodePreservingSubstring(source, 0, maxLength - 3) + "..."; in truncateAtMaxLength()
2999 return unicodePreservingSubstring(source, 0, maxLength); in truncateAtMaxLength()
3059 public static String unicodePreservingSubstring( in unicodePreservingSubstring() method
3073 public static String unicodePreservingSubstring(String str, int begin) { in unicodePreservingSubstring() method
3074 return unicodePreservingSubstring(str, begin, str.length()); in unicodePreservingSubstring()