Lines Matching refs:options

157     private int                 options = 0;
208 int options) {
211 NormalizerImpl.getNX(options)
219 protected String normalize(String src, int options) {
302 protected String normalize( String src, int options) {
303 return decompose(src,false,options);
364 protected String normalize( String src, int options) {
365 return decompose(src,true,options);
424 protected String normalize( String src, int options) {
425 return compose(src, false, options);
483 protected String normalize( String src, int options) {
484 return compose(src, true, options);
561 * The <tt>options</tt> parameter specifies which optional
578 this.options=opt;
614 this.options = opt;
654 * @param options The only recognized option is UNICODE_3_2
658 public static String compose(String str, boolean compat, int options) {
661 if (options == UNICODE_3_2_0_ORIGINAL) {
671 UnicodeSet nx = NormalizerImpl.getNX(options);
673 /* reset options bits that should only be set here or inside compose() */
674 options&=~(NormalizerImpl.OPTIONS_SETS_MASK|NormalizerImpl.OPTIONS_COMPAT|NormalizerImpl.OPTIONS_COMPOSE_CONTIGUOUS);
677 options|=NormalizerImpl.OPTIONS_COMPAT;
682 dest,0,dest.length,options,
716 * @param options The normalization options, ORed together (0 for no options).
720 public static String decompose(String str, boolean compat, int options) {
724 UnicodeSet nx = NormalizerImpl.getNX(options);
727 if (options == UNICODE_3_2_0_ORIGINAL) {
760 * mode and options.
770 * @param options The normalization options, ORed together (0 for no options).
779 Mode mode, int options) {
780 int length = mode.normalize(src,srcStart,srcLimit,dest,destStart,destLimit, options);
1179 int options) {
1235 mode, options);
1407 int options) {
1458 dest,destStart,destLimit, options);
1490 bufferLimit=next(text,buffer,bufferStart,buffer.length,mode,true,null,options);
1501 bufferLimit=previous(text,buffer,bufferStart,buffer.length,mode,true,null,options);
1598 * @param options the optional features to be enabled.
1600 public static String normalize(String str, Normalizer.Form form, int options) {
1622 return asciiOnly ? str : NFC.normalize(str, options);
1624 return asciiOnly ? str : NFD.normalize(str, options);
1626 return asciiOnly ? str : NFKC.normalize(str, options);
1628 return asciiOnly ? str : NFKD.normalize(str, options);
1646 * @param options the optional features to be enabled.
1663 * @param options the optional features to be enabled.
1665 public static boolean isNormalized(String str, Normalizer.Form form, int options) {
1668 return (NFC.quickCheck(str.toCharArray(),0,str.length(),false,NormalizerImpl.getNX(options))==YES);
1670 return (NFD.quickCheck(str.toCharArray(),0,str.length(),false,NormalizerImpl.getNX(options))==YES);
1672 return (NFKC.quickCheck(str.toCharArray(),0,str.length(),false,NormalizerImpl.getNX(options))==YES);
1674 return (NFKD.quickCheck(str.toCharArray(),0,str.length(),false,NormalizerImpl.getNX(options))==YES);