Home | History | Annotate | Download | only in MagickCore

Lines Matching refs:code

98     code;
113 code=(int) (*text++) & 0xff;
114 unicode=code;
117 if ((code & utf_info[i].code_mask) == utf_info[i].code_value)
157 static inline MagickBooleanType IsUTFSpace(int code)
159 if (((code >= 0x0009) && (code <= 0x000d)) || (code == 0x0020) ||
160 (code == 0x0085) || (code == 0x00a0) || (code == 0x1680) ||
161 (code == 0x180e) || ((code >= 0x2000) && (code <= 0x200a)) ||
162 (code == 0x2028) || (code == 0x2029) || (code == 0x202f) ||
163 (code == 0x205f) || (code == 0x3000))
168 static inline MagickBooleanType IsUTFValid(int code)
174 if (((code & ~mask) != 0) && ((code < 0xd800) || (code > 0xdfff)) &&
175 (code != 0xfffe) && (code != 0xffff))
180 static inline MagickBooleanType IsUTFAscii(int code)
186 if ((code & ~mask) != 0)