Home | History | Annotate | Download | only in cintltst

Lines Matching refs:expectedEscaped

593         UChar* expectedEscaped;
617 expectedEscaped = (UChar*)malloc(U_SIZEOF_UCHAR * patternLen);
619 expectedLen = u_unescape(pattern,expectedEscaped,patternLen);
620 if(got==NULL || u_strncmp(expectedEscaped,got,expectedLen)!=0 || expectedLen != len){
625 if(expectedEscaped[i] != got[i]){
626 log_verbose("Expected: 0x%04X Got: 0x%04X \n",expectedEscaped[i], got[i]);
630 free(expectedEscaped);