Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-port-test.cc537 EXPECT_FALSE(IsAsciiWordChar('\0')); in TEST()
538 EXPECT_FALSE(IsAsciiWordChar('+')); in TEST()
539 EXPECT_FALSE(IsAsciiWordChar('.')); in TEST()
540 EXPECT_FALSE(IsAsciiWordChar(' ')); in TEST()
541 EXPECT_FALSE(IsAsciiWordChar('\n')); in TEST()
545 EXPECT_TRUE(IsAsciiWordChar('a')); in TEST()
546 EXPECT_TRUE(IsAsciiWordChar('b')); in TEST()
547 EXPECT_TRUE(IsAsciiWordChar('A')); in TEST()
548 EXPECT_TRUE(IsAsciiWordChar('Z')); in TEST()
552 EXPECT_TRUE(IsAsciiWordChar('0')); in TEST()
[all …]
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-port.cc769 bool IsAsciiWordChar(char ch) { in IsAsciiWordChar() function
803 return IsAsciiWordChar(ch); in AtomMatchesChar()
805 return !IsAsciiWordChar(ch); in AtomMatchesChar()
H A Dgtest-internal-inl.h991 GTEST_API_ bool IsAsciiWordChar(char ch);