Lines Matching defs:info
113 IDNAInfo info;
116 trans->nameToASCII(input, result, info, errorCode);
117 if(U_FAILURE(errorCode) || info.hasErrors() || result!=expected) {
118 errln("T.nameToASCII(www.example.com) info.errors=%04lx result matches=%d %s",
119 (long)info.getErrors(), result==expected, u_errorName(errorCode));
122 trans->nameToUnicode(input, result, info, errorCode);
131 nontrans->labelToASCII(input, result, info, errorCode);
140 nontrans->labelToASCII(input, result, info, errorCode);
142 info.getErrors()!=(UIDNA_ERROR_LABEL_HAS_DOT|UIDNA_ERROR_INVALID_ACE_LABEL) ||
146 info.getErrors(), u_errorName(errorCode));
152 nontrans->labelToUnicodeUTF8(StringPiece(NULL, 5), sink, info, errorCode);
161 nontrans->nameToASCII_UTF8(StringPiece(), sink, info, errorCode);
170 nontrans->nameToUnicodeUTF8(StringPiece(s, 3), sink, info, errorCode);
179 trans->labelToUnicodeUTF8(StringPiece(s, 3), sink, info, errorCode);
194 trans->nameToUnicodeUTF8(eX, sink, info, errorCode);
212 IDNAInfo info;
213 if( not3->nameToUnicode(input, result, info, errorCode)!=
215 info.hasErrors()
219 (long)info.getErrors(), buffer);
223 not3->nameToASCII(input, result, info, errorCode);
224 if(result!=input || info.getErrors()!=UIDNA_ERROR_BIDI) {
229 not3->nameToUnicode(input, result, info, errorCode);
230 if(result!=input || info.hasErrors()) {
233 (long)info.getErrors(), buffer);