Lines Matching refs:strstr

15   ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), nullptr);  in TEST()
21 ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), haystack); in TEST()
27 ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), nullptr); in TEST()
33 ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), ""); in TEST()
39 ASSERT_STREQ(__llvm_libc::strstr(haystack, /*needle=*/"a"), "a"); in TEST()
41 ASSERT_STREQ(__llvm_libc::strstr(haystack, /*needle=*/"b"), nullptr); in TEST()
47 ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), "12345"); in TEST()
53 ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), "345"); in TEST()
59 ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), nullptr); in TEST()
65 ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), "12345"); in TEST()
71 ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), "defghi"); in TEST()
77 ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), "ghi"); in TEST()
83 ASSERT_STREQ(__llvm_libc::strstr(haystack, /*needle=*/"3"), nullptr); in TEST()
84 ASSERT_STREQ(__llvm_libc::strstr(haystack, /*needle=*/"4"), nullptr); in TEST()
91 ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), "lap"); in TEST()
97 ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), "tale"); in TEST()
103 ASSERT_STREQ(__llvm_libc::strstr(haystack, needle), "dog"); in TEST()
109 ASSERT_STREQ(__llvm_libc::strstr(haystack, "time"), "time"); in TEST()
110 ASSERT_STREQ(__llvm_libc::strstr(haystack, "lime"), nullptr); in TEST()
111 ASSERT_STREQ(__llvm_libc::strstr(haystack, "tome"), nullptr); in TEST()
112 ASSERT_STREQ(__llvm_libc::strstr(haystack, "tire"), nullptr); in TEST()
113 ASSERT_STREQ(__llvm_libc::strstr(haystack, "timo"), nullptr); in TEST()