Home | History | Annotate | Download | only in text

Lines Matching defs:COMPOSE

378     public static final Mode COMPOSE = NFC;
665 * Compose a string.
667 * @param str The string to compose.
675 public static String compose(String str, boolean compat) {
676 return compose(str,compat,0);
680 * Compose a string.
682 * @param str The string to compose.
691 public static String compose(String str, boolean compat, int options) {
696 * Compose a string.
698 * @param source The char array to compose.
711 public static int compose(char[] source,char[] target, boolean compat, int options) {
712 return compose(source, 0, source.length, target, 0, target.length, compat, options);
716 * Compose a string.
718 * @param src The char array to compose.
735 public static int compose(char[] src,int srcStart, int srcLimit,
798 * @param src The char array to compose.
884 * @param src The char array to compose.