Home | History | Annotate | Download | only in unicode

Lines Matching full:errors

90      * The label might be modified according to the types of errors.
91 * Labels with severe errors will be left in (or turned into) their Unicode form.
113 * The label might be modified according to the types of errors.
136 * The domain name might be modified according to the types of errors.
137 * Labels with severe errors will be left in (or turned into) their Unicode form.
159 * The domain name might be modified according to the types of errors.
260 * Output container for IDNA processing errors.
270 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(FALSE), isBiDi(FALSE), isOkBiDi(TRUE) {}
272 * Were there IDNA processing errors?
273 * @return TRUE if there were processing errors
276 UBool hasErrors() const { return errors!=0; }
278 * Returns a bit set indicating IDNA processing errors.
280 * @return bit set of processing errors
283 uint32_t getErrors() const { return errors; }
306 errors=labelErrors=0;
312 uint32_t errors, labelErrors;