Home | History | Annotate | Download | only in method

Lines Matching defs:Locale

26 import java.util.Locale;
45 * Constructs a WordIterator using the default locale.
48 this(Locale.getDefault());
52 * Constructs a new WordIterator for the specified locale.
53 * @param locale The locale to be used for analyzing the text.
55 public WordIterator(Locale locale) {
56 mIterator = BreakIterator.getWordInstance(locale);
329 * At the moment, this is locale-independent, and includes all the characters in
336 * @param locale the locale to consider the codepoint in. Presently ignored.
340 public static boolean isMidWordPunctuation(Locale locale, int codePoint) {