Lines Matching defs:errors
98 * The label might be modified according to the types of errors.
99 * Labels with severe errors will be left in (or turned into) their Unicode form.
121 * The label might be modified according to the types of errors.
144 * The domain name might be modified according to the types of errors.
145 * Labels with severe errors will be left in (or turned into) their Unicode form.
167 * The domain name might be modified according to the types of errors.
264 * Output container for IDNA processing errors.
274 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(FALSE), isBiDi(FALSE), isOkBiDi(TRUE) {}
276 * Were there IDNA processing errors?
277 * @return TRUE if there were processing errors
280 UBool hasErrors() const { return errors!=0; }
282 * Returns a bit set indicating IDNA processing errors.
284 * @return bit set of processing errors
287 uint32_t getErrors() const { return errors; }
310 errors=labelErrors=0;
316 uint32_t errors, labelErrors;