Searched refs:IsAsciiWordChar (Results 1 - 3 of 3) sorted by relevance

/gem5/ext/googletest/googletest/test/
H A Dgtest-port_test.cc542 EXPECT_FALSE(IsAsciiWordChar('\0'));
543 EXPECT_FALSE(IsAsciiWordChar('+'));
544 EXPECT_FALSE(IsAsciiWordChar('.'));
545 EXPECT_FALSE(IsAsciiWordChar(' '));
546 EXPECT_FALSE(IsAsciiWordChar('\n'));
550 EXPECT_TRUE(IsAsciiWordChar('a'));
551 EXPECT_TRUE(IsAsciiWordChar('b'));
552 EXPECT_TRUE(IsAsciiWordChar('A'));
553 EXPECT_TRUE(IsAsciiWordChar('Z'));
557 EXPECT_TRUE(IsAsciiWordChar('
[all...]
/gem5/ext/googletest/googletest/src/
H A Dgtest-port.cc640 bool IsAsciiWordChar(char ch) { function in namespace:testing::internal
664 case 'w': return IsAsciiWordChar(ch);
665 case 'W': return !IsAsciiWordChar(ch);
H A Dgtest-internal-inl.h940 GTEST_API_ bool IsAsciiWordChar(char ch);

Completed in 16 milliseconds