HomeSort by relevance Sort by last modified time
    Searched refs:IsAsciiWordChar (Results 1 - 3 of 3) sorted by null

  /external/chromium/testing/gtest/test/
gtest-port_test.cc 485 EXPECT_FALSE(IsAsciiWordChar('\0'));
486 EXPECT_FALSE(IsAsciiWordChar('+'));
487 EXPECT_FALSE(IsAsciiWordChar('.'));
488 EXPECT_FALSE(IsAsciiWordChar(' '));
489 EXPECT_FALSE(IsAsciiWordChar('\n'));
493 EXPECT_TRUE(IsAsciiWordChar('a'));
494 EXPECT_TRUE(IsAsciiWordChar('b'));
495 EXPECT_TRUE(IsAsciiWordChar('A'));
496 EXPECT_TRUE(IsAsciiWordChar('Z'));
500 EXPECT_TRUE(IsAsciiWordChar('0'))
    [all...]
  /external/chromium/testing/gtest/src/
gtest-port.cc 191 bool IsAsciiWordChar(char ch) {
215 case 'w': return IsAsciiWordChar(ch);
216 case 'W': return !IsAsciiWordChar(ch);
gtest-internal-inl.h     [all...]

Completed in 921 milliseconds