Home | History | Annotate | Download | only in cintltst

Lines Matching refs:u_strstr

733         s!=u_strstr(s, &nul) ||
755 first!=u_strstr(s+1, sub_a) ||
779 NULL!=u_strstr(s+1, sub_b) ||
814 first!=u_strstr(s+1, sub_lead) ||
839 first!=u_strstr(s+1, sub_trail) ||
863 first!=u_strstr(s+1, sub_supp) ||
898 NULL!=u_strstr(s+1, sub_supp2) ||
917 first!=u_strstr(s+1, sub_a_lead) ||
934 first!=u_strstr(s+1, sub_trail_a) ||
950 NULL!=u_strstr(s+1, sub_aba) ||
1029 /*Testing u_strstr()*/
1030 log_verbose("Testing u_strstr\n");
1034 result=u_strstr(temp, subString);
1036 log_err("There is an error in u_strstr() Expected match at position 2 Got %ld (pointer 0x%lx)\n", result-temp, result);
1038 result=u_strstr(temp, subString+2); /* subString+2 is an empty string */
1040 log_err("There is an error in u_strstr() Expected match at position 0 Got %ld (pointer 0x%lx)\n", result-temp, result);
1042 result=u_strstr(subString, temp);
1044 log_err("There is an error in u_strstr() Expected NULL \"not found\" Got non-NULL \"found\" result\n");