Home | History | Annotate | Download | only in cintltst

Lines Matching refs:status

139     UErrorCode status = U_ZERO_ERROR;
161 trans = utrans_open(buf, UTRANS_FORWARD,NULL,0,NULL, &status);
162 if (U_FAILURE(status)) {
164 buf, u_errorName(status));
244 UErrorCode status=U_ZERO_ERROR;
271 status = U_ZERO_ERROR;
272 t1=utrans_open(TransID[i], UTRANS_FORWARD,NULL,0,NULL, &status);
273 if(t1 == NULL || U_FAILURE(status)){
274 log_data_err("FAIL: in instantiation for id=%s -> %s (Are you missing data?)\n", TransID[i], u_errorName(status));
277 inverse1=utrans_openInverse(t1, &status);
278 if(U_FAILURE(status)){
279 log_err("FAIL: utrans_openInverse() failed for id=%s. Error=%s\n", TransID[i], myErrorName(status));
292 UErrorCode status=U_ZERO_ERROR;
300 t1=utrans_open("Latin-Devanagari", UTRANS_FORWARD, NULL,0,NULL,&status);
301 if(U_FAILURE(status)){
302 log_data_err("FAIL: construction -> %s (Are you missing data?)\n", u_errorName(status));
305 t2=utrans_open("Latin-Greek", UTRANS_FORWARD, NULL,0,NULL,&status);
306 if(U_FAILURE(status)){
312 t3=utrans_clone(t1, &status);
313 t4=utrans_clone(t2, &status);
339 UErrorCode status=U_ZERO_ERROR;
349 t1=utrans_open("TestA-TestB", UTRANS_FORWARD,NULL,0,NULL, &status);
350 if(t1 != NULL || U_SUCCESS(status)) {
354 status=U_ZERO_ERROR;
356 inverse1=utrans_open("TestA-TestB", UTRANS_REVERSE, NULL,0,NULL,&status);
357 if(inverse1 != NULL || U_SUCCESS(status)) {
361 status=U_ZERO_ERROR;
363 rules=utrans_open("TestA-TestB",UTRANS_FORWARD, rule, 4, NULL, &status);
364 if(U_FAILURE(status)){
365 log_err("FAIL: utrans_openRules(a<>B) failed with error=%s\n", myErrorName(status));
370 rules2=utrans_clone(rules, &status);
371 if(U_FAILURE(status)) {
372 log_err("FAIL: utrans_clone(a<>B) failed with error=%s\n", myErrorName(status));
376 status=U_ZERO_ERROR;
378 utrans_register(rules, &status);
379 if(U_FAILURE(status)){
380 log_err("FAIL: utrans_register failed with error=%s\n", myErrorName(status));
383 status=U_ZERO_ERROR;
385 t1= utrans_open("TestA-TestB", UTRANS_FORWARD, NULL,0,NULL,&status);
386 if(U_FAILURE(status) || t1 == NULL){
393 status=U_ZERO_ERROR;
396 t1=utrans_open("TestA-TestB", UTRANS_FORWARD,NULL,0,NULL, &status);
397 if(U_SUCCESS(status) || t1 != NULL) {
404 status=U_ZERO_ERROR;
405 utrans_register(rules2, &status);
406 if(U_FAILURE(status)){
407 log_err("FAIL: 2nd utrans_register failed with error=%s\n", myErrorName(status));
410 status=U_ZERO_ERROR;
412 t1= utrans_open("TestA-TestB", UTRANS_FORWARD, NULL,0,NULL,&status);
413 if(U_FAILURE(status) || t1 == NULL){
420 status=U_ZERO_ERROR;
423 t1=utrans_openU(ID, -1, UTRANS_FORWARD,NULL,0,NULL, &status);
424 if(U_SUCCESS(status) || t1 != NULL) {
487 UErrorCode status = U_ZERO_ERROR;
505 UTransliterator* hex = utrans_open("Any-Hex", UTRANS_FORWARD, NULL,0,NULL,&status);
507 if (hex == 0 || U_FAILURE(status)) {
509 u_errorName(status));
516 utrans_setFilter(hex, filt, -1, &status);
518 if (U_FAILURE(status)) {
520 u_errorName(status));
527 status);
529 if (U_FAILURE(status)) {
531 u_errorName(status));
555 UErrorCode status = U_ZERO_ERROR;
559 &parseErr, &status);
561 if (U_FAILURE(status)) {
563 u_errorName(status));
579 UErrorCode status = U_ZERO_ERROR;
585 &parseErr, &status);
586 if (U_FAILURE(status)) {
589 crules, u_errorName(status));
611 UErrorCode status = U_ZERO_ERROR;
627 utrans_transUChars(trans, buf, NULL, CAP, 0, &limit, &status);
628 if (U_FAILURE(status)) {
630 u_errorName(status));
648 utrans_transIncrementalUChars(trans, buf, NULL, CAP, &pos, &status);
649 utrans_transUChars(trans, buf, NULL, CAP, pos.start, &pos.limit, &status);
650 if (U_FAILURE(status)) {
652 u_errorName(status));
670 utrans_trans(trans, (UReplaceable*)xrepPtr, &xrepVtable, 0, &limit, &status);
671 if (U_FAILURE(status)) {
673 u_errorName(status));
693 utrans_transIncremental(trans, (UReplaceable*)xrepPtr, &xrepVtable, &pos, &status);
694 utrans_trans(trans, (UReplaceable*)xrepPtr, &xrepVtable, pos.start, &pos.limit, &status);
695 if (U_FAILURE(status)) {
697 u_errorName(status));