Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
DStringUtilsTests.java233 assertEquals("null", "", StringUtils.removeFromCommaSplittableTextIfExists("key", null)); in testRemoveFromCommaSplittableTextIfExists()
234 assertEquals("empty", "", StringUtils.removeFromCommaSplittableTextIfExists("key", "")); in testRemoveFromCommaSplittableTextIfExists()
237 StringUtils.removeFromCommaSplittableTextIfExists("key", "key1")); in testRemoveFromCommaSplittableTextIfExists()
239 StringUtils.removeFromCommaSplittableTextIfExists("key", "key1,key2")); in testRemoveFromCommaSplittableTextIfExists()
242 StringUtils.removeFromCommaSplittableTextIfExists("key", "key")); in testRemoveFromCommaSplittableTextIfExists()
244 StringUtils.removeFromCommaSplittableTextIfExists("key", "key,key2")); in testRemoveFromCommaSplittableTextIfExists()
246 StringUtils.removeFromCommaSplittableTextIfExists("key", "key1,key")); in testRemoveFromCommaSplittableTextIfExists()
248 StringUtils.removeFromCommaSplittableTextIfExists("key", "key1,key,key3")); in testRemoveFromCommaSplittableTextIfExists()
251 StringUtils.removeFromCommaSplittableTextIfExists("key", "key,key,key")); in testRemoveFromCommaSplittableTextIfExists()
253 StringUtils.removeFromCommaSplittableTextIfExists( in testRemoveFromCommaSplittableTextIfExists()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DAdditionalSubtypeUtils.java94 final String extraValue = StringUtils.removeFromCommaSplittableTextIfExists( in getPrefSubtype()
95 layoutExtraValue, StringUtils.removeFromCommaSplittableTextIfExists( in getPrefSubtype()
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DStringUtils.java155 public static String removeFromCommaSplittableTextIfExists(@Nonnull final String text, in removeFromCommaSplittableTextIfExists() method in StringUtils