Home | History | Annotate | Download | only in text

Lines Matching defs:COMPOSE

391     public static final Mode COMPOSE = NFC;
678 * Compose a string.
680 * @param str The string to compose.
689 public static String compose(String str, boolean compat) {
690 return compose(str,compat,0);
694 * Compose a string.
696 * @param str The string to compose.
706 public static String compose(String str, boolean compat, int options) {
711 * Compose a string.
713 * @param source The char array to compose.
727 public static int compose(char[] source,char[] target, boolean compat, int options) {
728 return compose(source, 0, source.length, target, 0, target.length, compat, options);
732 * Compose a string.
734 * @param src The char array to compose.
752 public static int compose(char[] src,int srcStart, int srcLimit,
818 * @param src The char array to compose.
908 * @param src The char array to compose.