Home | History | Annotate | Download | only in cintltst

Lines Matching refs:nul

715     static const UChar a=0x61, b=0x62, lead=0xd801, trail=0xdc02, nul=0;
720 /* search for NUL code point: find end of string */
724 first!=u_strchr(s, nul) ||
725 first!=u_strchr32(s, nul) ||
726 first!=u_memchr(s, nul, LENGTHOF(s)) ||
727 first!=u_memchr32(s, nul, LENGTHOF(s)) ||
728 first!=u_strrchr(s, nul) ||
729 first!=u_strrchr32(s, nul) ||
730 first!=u_memrchr(s, nul, LENGTHOF(s)) ||
731 first!=u_memrchr32(s, nul, LENGTHOF(s))
733 log_err("error: one of the u_str[|mem][r]chr[32](s, nul) does not find the terminator of s\n");
738 s!=u_strstr(s, &nul) ||
739 s!=u_strFindFirst(s, -1, &nul, -1) ||
740 s!=u_strFindFirst(s, -1, &nul, 0) ||
741 s!=u_strFindFirst(s, LENGTHOF(s), &nul, -1) ||
742 s!=u_strFindFirst(s, LENGTHOF(s), &nul, 0) ||
743 s!=u_strrstr(s, &nul) ||
744 s!=u_strFindLast(s, -1, &nul, -1) ||
745 s!=u_strFindLast(s, -1, &nul, 0) ||
746 s!=u_strFindLast(s, LENGTHOF(s), &nul, -1) ||
747 s!=u_strFindLast(s, LENGTHOF(s), &nul, 0)
1161 /* test u_strHasMoreChar32Than() with NUL-termination (length=-1) */
1499 /* terminate with a _pair_ of 0 bytes - a UChar NUL in UTF-16BE (length is known to be ok) */