Home
last modified time | relevance | path

Searched refs:labelErrors (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4c/source/common/
Duts46.cpp338 info.labelErrors|=UIDNA_ERROR_LABEL_TOO_LONG; in process()
345 info.errors|=info.labelErrors; in process()
368 info.labelErrors|=UIDNA_ERROR_LEADING_HYPHEN; in process()
372 info.labelErrors|=UIDNA_ERROR_TRAILING_HYPHEN; in process()
381 info.labelErrors|=UIDNA_ERROR_EMPTY_LABEL; in process()
384 info.labelErrors|=UIDNA_ERROR_LABEL_TOO_LONG; in process()
386 info.errors|=info.labelErrors; in process()
387 info.labelErrors=0; in process()
392 info.errors|=info.labelErrors; in process()
438 info.labelErrors|=UIDNA_ERROR_LABEL_TOO_LONG; in processUTF8()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DIDNA.java209 labelErrors=EnumSet.noneOf(Error.class); in Info()
240 labelErrors.clear(); in reset()
246 private EnumSet<Error> errors, labelErrors; field in IDNA.Info
280 return !info.labelErrors.isEmpty() && !Collections.disjoint(info.labelErrors, errors); in hasCertainLabelErrors()
289 info.labelErrors.add(error); in addLabelError()
298 if(!info.labelErrors.isEmpty()) { in promoteAndResetLabelErrors()
299 info.errors.addAll(info.labelErrors); in promoteAndResetLabelErrors()
300 info.labelErrors.clear(); in promoteAndResetLabelErrors()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DIDNA.java222 labelErrors=EnumSet.noneOf(Error.class); in Info()
256 labelErrors.clear(); in reset()
262 private EnumSet<Error> errors, labelErrors; field in IDNA.Info
293 return !info.labelErrors.isEmpty() && !Collections.disjoint(info.labelErrors, errors); in hasCertainLabelErrors()
301 info.labelErrors.add(error); in addLabelError()
309 if(!info.labelErrors.isEmpty()) { in promoteAndResetLabelErrors()
310 info.errors.addAll(info.labelErrors); in promoteAndResetLabelErrors()
311 info.labelErrors.clear(); in promoteAndResetLabelErrors()
/external/icu/icu4c/source/common/unicode/
Didna.h272 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(FALSE), isBiDi(FALSE), isOkBiDi(TRUE) {} in IDNAInfo()
308 errors=labelErrors=0; in reset()
314 uint32_t errors, labelErrors; variable