Searched refs:toSortedCodePointArray (Results 1 – 4 of 4) sorted by relevance
48 mSortedSymbolsPrecededBySpace = StringUtils.toSortedCodePointArray( in SpacingAndPunctuations()51 mSortedSymbolsFollowedBySpace = StringUtils.toSortedCodePointArray( in SpacingAndPunctuations()53 mSortedSymbolsClusteringTogether = StringUtils.toSortedCodePointArray( in SpacingAndPunctuations()56 mSortedWordConnectors = StringUtils.toSortedCodePointArray( in SpacingAndPunctuations()58 mSortedWordSeparators = StringUtils.toSortedCodePointArray( in SpacingAndPunctuations()60 mSortedSentenceTerminators = StringUtils.toSortedCodePointArray( in SpacingAndPunctuations()
335 private static final int[] SPACE_PERIOD = StringUtils.toSortedCodePointArray(" .");337 StringUtils.toSortedCodePointArray(" \n.!?*()&");338 private static final int[] WORD_SEPARATORS = StringUtils.toSortedCodePointArray(" \n.!?*,();&");
232 mSpacingAndPunctuations, StringUtils.toSortedCodePointArray( in testGetWordRangeAtCursor()
294 public static int[] toSortedCodePointArray(@Nonnull final String string) { in toSortedCodePointArray() method in StringUtils