Home
last modified time | relevance | path

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

/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
DPunycodeReference.java41 public static final int punycode_big_output=2; /* Output would exceed the space provided. */ field in PunycodeReference
153 if (max_out - out < 2) return punycode_big_output; in encode()
198 if (out >= max_out) return punycode_big_output; in encode()
238 if(rc==punycode_big_output){ in encode()
256 case punycode_big_output: in getException()
277 if(rc==punycode_big_output){ in decode()
319 if (b > max_out) return punycode_big_output; in decode()
366 if (out >= max_out) return punycode_big_output; in decode()
/external/icu/icu4c/source/test/intltest/
Dpunyref.c146 if (max_out - out < 2) return punycode_big_output; in punycode_encode()
191 if (out >= max_out) return punycode_big_output; in punycode_encode()
237 if (b > max_out) return punycode_big_output; in punycode_decode()
284 if (out >= max_out) return punycode_big_output; in punycode_decode()
Dpunyref.h44 punycode_big_output, /* Output would exceed the space provided. */ enumerator
Didnaref.cpp105 case punycode_big_output: /* Output would exceed the space provided. */ in getError()