Home | History | Annotate | Download | only in unicode

Lines Matching refs:errors

96      * The label might be modified according to the types of errors.
97 * Labels with severe errors will be left in (or turned into) their Unicode form.
119 * The label might be modified according to the types of errors.
142 * The domain name might be modified according to the types of errors.
143 * Labels with severe errors will be left in (or turned into) their Unicode form.
165 * The domain name might be modified according to the types of errors.
262 * Output container for IDNA processing errors.
272 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(FALSE), isBiDi(FALSE), isOkBiDi(TRUE) {}
274 * Were there IDNA processing errors?
275 * @return TRUE if there were processing errors
278 UBool hasErrors() const { return errors!=0; }
280 * Returns a bit set indicating IDNA processing errors.
282 * @return bit set of processing errors
285 uint32_t getErrors() const { return errors; }
308 errors=labelErrors=0;
314 uint32_t errors, labelErrors;