Home | History | Annotate | Download | only in unittest

Lines Matching refs:strrchr

3123   EXPECT_TRUE(strrchr(str, 'X') == str+2);
3124 EXPECT_TRUE(strrchr(str, 'x') == str+3);
3125 EXPECT_TRUE(strrchr(str, 'Y') == NULL);
3159 EXPECT_TRUE(strrchr(foo, 10) != 0);
3160 EXPECT_TRUE(strrchr(foo, 0) != 0);
3161 EXPECT_TRUE(strrchr(foo, 0) == foo + strlen(foo));
3162 EXPECT_TRUE(strrchr(foo, 250) != 0);
3163 EXPECT_TRUE(strrchr(foo, -60) == 0);
6352 CHECK(strrchr(GLOB, '!') == NULL);