Searched defs:extraChars (Results 1 - 1 of 1) sorted by relevance

/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DStringUtil.java275 * @param extraChars Characters in addition to whitespace characters that
277 * @return String with whitespace and characters in extraChars removed
280 public static String trimStart(String s, String extraChars) { argument
285 || (extraChars != null && extraChars.indexOf(ch) >= 0)) {
316 * @param extraChars Characters in addition to whitespace characters that
318 * @return String with whitespace and characters in extraChars removed
321 public static String trimEnd(String s, String extraChars) { argument
326 || (extraChars != null && extraChars
[all...]

Completed in 45 milliseconds