Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Duts46.cpp340 info.labelErrors|=UIDNA_ERROR_LABEL_TOO_LONG; in process()
347 info.errors|=info.labelErrors; in process()
370 info.labelErrors|=UIDNA_ERROR_LEADING_HYPHEN; in process()
374 info.labelErrors|=UIDNA_ERROR_TRAILING_HYPHEN; in process()
383 info.labelErrors|=UIDNA_ERROR_EMPTY_LABEL; in process()
386 info.labelErrors|=UIDNA_ERROR_LABEL_TOO_LONG; in process()
388 info.errors|=info.labelErrors; in process()
389 info.labelErrors=0; in process()
394 info.errors|=info.labelErrors; in process()
440 info.labelErrors|=UIDNA_ERROR_LABEL_TOO_LONG; in processUTF8()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DIDNA.java211 labelErrors=EnumSet.noneOf(Error.class); in Info()
242 labelErrors.clear(); in reset()
248 private EnumSet<Error> errors, labelErrors; field in IDNA.Info
282 return !info.labelErrors.isEmpty() && !Collections.disjoint(info.labelErrors, errors); in hasCertainLabelErrors()
291 info.labelErrors.add(error); in addLabelError()
300 if(!info.labelErrors.isEmpty()) { in promoteAndResetLabelErrors()
301 info.errors.addAll(info.labelErrors); in promoteAndResetLabelErrors()
302 info.labelErrors.clear(); in promoteAndResetLabelErrors()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DIDNA.java224 labelErrors=EnumSet.noneOf(Error.class); in Info()
258 labelErrors.clear(); in reset()
264 private EnumSet<Error> errors, labelErrors; field in IDNA.Info
295 return !info.labelErrors.isEmpty() && !Collections.disjoint(info.labelErrors, errors); in hasCertainLabelErrors()
303 info.labelErrors.add(error); in addLabelError()
311 if(!info.labelErrors.isEmpty()) { in promoteAndResetLabelErrors()
312 info.errors.addAll(info.labelErrors); in promoteAndResetLabelErrors()
313 info.labelErrors.clear(); in promoteAndResetLabelErrors()
/external/icu/icu4c/source/common/unicode/
Didna.h274 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(FALSE), isBiDi(FALSE), isOkBiDi(TRUE) {} in IDNAInfo()
310 errors=labelErrors=0; in reset()
316 uint32_t errors, labelErrors; variable