Lines Matching refs:form

48  * decomposed form, allowing for easier sorting and searching of text.
56 * "composed" form):
62 * or as two separate characters (the "decomposed" form):
112 * It is not a normalization form because it does not provide for uniqueness of
116 * The form is defined such that the "raw decomposition", the recursive
559 * normalized form of a given string.
583 * normalized form of the given text.
596 * normalized form of the given text.
1572 * normalized form of a given string.
1584 * Normalizes a <code>String</code> using the given normalization form.
1587 * @param form the normalization form
1589 public static String normalize(String str, Normalizer.Form form) {
1590 return normalize(str, form, UNICODE_LATEST);
1594 * Normalizes a <code>String</code> using the given normalization form.
1597 * @param form the normalization form
1600 public static String normalize(String str, Normalizer.Form form, int options) {
1620 switch (form) {
1631 throw new IllegalArgumentException("Unexpected normalization form: " +
1632 form);
1636 * Test if a string is in a given normalization form.
1645 * @param form the normalization form
1648 public static boolean isNormalized(String str, Normalizer.Form form) {
1649 return isNormalized(str, form, UNICODE_LATEST);
1653 * Test if a string is in a given normalization form.
1662 * @param form the normalization form
1665 public static boolean isNormalized(String str, Normalizer.Form form, int options) {
1666 switch (form) {
1677 throw new IllegalArgumentException("Unexpected normalization form: " +
1678 form);