Lines Matching defs:errors
100 * The label might be modified according to the types of errors.
101 * Labels with severe errors will be left in (or turned into) their Unicode form.
123 * The label might be modified according to the types of errors.
146 * The domain name might be modified according to the types of errors.
147 * Labels with severe errors will be left in (or turned into) their Unicode form.
169 * The domain name might be modified according to the types of errors.
266 * Output container for IDNA processing errors.
276 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(false), isBiDi(false), isOkBiDi(true) {}
278 * Were there IDNA processing errors?
279 * @return true if there were processing errors
282 UBool hasErrors() const { return errors!=0; }
284 * Returns a bit set indicating IDNA processing errors.
286 * @return bit set of processing errors
289 uint32_t getErrors() const { return errors; }
312 errors=labelErrors=0;
318 uint32_t errors, labelErrors;