Home | History | Annotate | Download | only in cintltst

Lines Matching refs:u_strstr

738         s!=u_strstr(s, &nul) ||
760 first!=u_strstr(s+1, sub_a) ||
784 NULL!=u_strstr(s+1, sub_b) ||
819 first!=u_strstr(s+1, sub_lead) ||
844 first!=u_strstr(s+1, sub_trail) ||
868 first!=u_strstr(s+1, sub_supp) ||
903 NULL!=u_strstr(s+1, sub_supp2) ||
922 first!=u_strstr(s+1, sub_a_lead) ||
939 first!=u_strstr(s+1, sub_trail_a) ||
955 NULL!=u_strstr(s+1, sub_aba) ||
1034 /*Testing u_strstr()*/
1035 log_verbose("Testing u_strstr\n");
1039 result=u_strstr(temp, subString);
1041 log_err("There is an error in u_strstr() Expected match at position 2 Got %ld (pointer 0x%lx)\n", result-temp, result);
1043 result=u_strstr(temp, subString+2); /* subString+2 is an empty string */
1045 log_err("There is an error in u_strstr() Expected match at position 0 Got %ld (pointer 0x%lx)\n", result-temp, result);
1047 result=u_strstr(subString, temp);
1049 log_err("There is an error in u_strstr() Expected NULL \"not found\" Got non-NULL \"found\" result\n");