Lines Matching refs:foo
43 CPPUNIT_CHECK( std::memchr("foo", 'o', 3) != NULL );
50 const char* foo = "foo";
52 CPPUNIT_CHECK( std::strcoll("foo", "foo") == 0 );
55 CPPUNIT_CHECK( std::strcat((char*)buf, foo) == (char*)buf ); // buf <- foo
56 CPPUNIT_CHECK( std::strchr(foo, 'o') != NULL );
58 CPPUNIT_CHECK( std::strcpy((char*)buf, foo) == (char*)buf ); // buf <- foo
59 CPPUNIT_CHECK( std::strcspn("foo", "o") == 1 );
60 CPPUNIT_CHECK( std::strlen("foo") == 3 );
61 CPPUNIT_CHECK( std::strncat((char*)buf, foo, 2) == (char*)buf ); // buf <- foofo
63 CPPUNIT_CHECK( std::strncpy((char*)buf, foo, 3) == (char*)buf ); // buf <- foo
64 CPPUNIT_CHECK( std::strpbrk(foo, "abcdo") == foo + 1 );
68 CPPUNIT_CHECK( std::strstr(foo, "") == foo );
72 CPPUNIT_CHECK( std::strxfrm((char*)buf, foo, 3) != 0 );